Постановка нового маршрута

This commit is contained in:
2026-01-04 18:18:29 +03:00
parent 96d1e4b6a5
commit 49a2913884
8 changed files with 119 additions and 67 deletions
+19
View File
@@ -0,0 +1,19 @@
#pragma once
#include <cstdint>
#include <vector>
#include "../entities/medication.h"
namespace uad
{
class IMedicationsDAO
{
public:
virtual std::vector<medication> GetAll() = 0;
virtual std::string Create(medication) = 0;
virtual ~IMedicationsDAO() = default;
};
}