2024-04-17 23:12:10 +04:00
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
2024-04-17 23:33:33 +04:00
|
|
|
|
public interface ICourseModel : IId
|
2024-04-17 23:12:10 +04:00
|
|
|
|
{
|
|
|
|
|
int DaysCount { get; }
|
|
|
|
|
int PillsPerDay { get; }
|
|
|
|
|
string Comment { get; }
|
2024-04-28 12:12:39 +04:00
|
|
|
|
Dictionary<int, IDiagnoseModel> CourseDiagnoses { get; }
|
2024-04-17 23:12:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|