2024-04-17 17:43:28 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
2024-04-17 22:18:05 +04:00
|
|
|
|
public interface IRecipeModel : IId
|
2024-04-17 17:43:28 +04:00
|
|
|
|
{
|
|
|
|
|
int CountProcedures { get; set; }
|
|
|
|
|
string Comment { get; set; }
|
2024-04-17 23:03:34 +04:00
|
|
|
|
Dictionary<int, IRecipeModel> ProcedureRecipe { get; }
|
|
|
|
|
|
2024-04-17 17:43:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|