#include "ZenvyController.h" //Authentication AuthenticationContext ZenvyController::login(const std::string& email, const std::string& password) { return m_authenticationManagementService->login(email, password); } void ZenvyController::logout() { m_authenticationManagementService->logout(); } void ZenvyController::changePassword(const std::string& password) { m_authenticationManagementService->changePassword(password); }