Разработка ручки для GetAllMedications

This commit is contained in:
2026-01-08 11:53:20 +03:00
parent f698196778
commit 1cb1a9d0eb
4 changed files with 110 additions and 5 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
#include "AuthRegistrationExecutor.h"
#include "AuthLoginExecutor.h"
#include "AuthLogoutExecutor.h"
#include "UserGetMedicationsExecutor.h"
#include "GetUserMedicationsExecutor.h"
#include "../DAO/IUserDAO.h"
#include "../DAO/IAuthDAO.h"
#include "../DAO/IMedicationsDAO.h"
@@ -26,7 +26,7 @@ class RootExecutor
Body, Allocator, boost::beast::http::string_body>;
using RouteAuthLogoutExecutor = AuthLogoutExecutor<
Body, Allocator, boost::beast::http::string_body>;
using RouteUserGetMedicationsExecutor = UserGetMedicationsExecutor<
using RouteUserGetMedicationsExecutor = GetUserMedicationsExecutor<
Body, Allocator, boost::beast::http::string_body>;
using IRouteController = IController<Body, Allocator, boost::beast::http::string_body>;
using RouteController = Controller<Body, Allocator, boost::beast::http::string_body>;