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