using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalDataModels.Models
{
///
/// Модель для сущности "Рецепт"
///
public interface IRecipeModel : IId
{
///
/// Дата выписки рецепта
///
DateTime IssueDate { get; }
///
/// Идентификатор доктора
///
int DoctorId { get; }
///
/// Список лекарств в рецепте
///
Dictionary RecipeMedicines { get; }
}
}