Ручка PostUserTreatmentScheme.h

This commit is contained in:
2026-01-18 11:47:37 +03:00
parent c5c6058fb2
commit 05a135afc6
8 changed files with 209 additions and 18 deletions
+5
View File
@@ -10,6 +10,11 @@ class IUserTreatmentSchemeDAO {
public:
virtual std::vector<user_treatment_scheme_dto> FindByUserUUID(const std::string& login) = 0;
virtual void CreateUserTreatmentScheme(
const std::string& user_login,
const user_treatment_scheme_dto& dto
) = 0;
virtual ~IUserTreatmentSchemeDAO() = default;
};
}