2023-03-29 10:33:59 +04:00
|
|
|
|
namespace HospitalDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IRecipeModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
DateTime Date { get; }
|
|
|
|
|
int ApothecaryId { get; }
|
|
|
|
|
Dictionary<int, IMedicineModel> RecipeMedicines { get; }
|
2023-03-29 10:55:59 +04:00
|
|
|
|
Dictionary<int, ITreatmentModel> RecipeTreatments { get; }
|
2023-03-29 10:33:59 +04:00
|
|
|
|
}
|
|
|
|
|
}
|