2024-04-28 12:12:39 +04:00
|
|
|
|
namespace PolyclinicDataModels.Models
|
2024-04-17 17:43:28 +04:00
|
|
|
|
{
|
2024-04-17 22:18:05 +04:00
|
|
|
|
public interface IRecipeModel : IId
|
2024-04-17 17:43:28 +04:00
|
|
|
|
{
|
2024-04-27 23:14:58 +04:00
|
|
|
|
int ProceduresCount { get; set; }
|
2024-04-17 17:43:28 +04:00
|
|
|
|
string Comment { get; set; }
|
2024-05-01 00:29:07 +04:00
|
|
|
|
int? CourseId { get; set; }
|
2024-04-30 16:20:00 +04:00
|
|
|
|
Dictionary<int, IProcedureModel> RecipeProcedures { get; }
|
2024-04-17 17:43:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|