2023-04-04 09:51:08 +04:00
|
|
|
|
using HospitalDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HospitalContracts.BindingModels
|
|
|
|
|
{
|
2023-04-05 00:33:37 +04:00
|
|
|
|
public class KurseBindingModel: IKurseModel
|
2023-04-04 09:51:08 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Duration { get; set; } = string.Empty;
|
2023-06-19 13:29:55 +04:00
|
|
|
|
public int CountInDay { get; set; }
|
2023-06-20 18:43:55 +04:00
|
|
|
|
public Dictionary<int, IMedicinesModel> KurseMedicines
|
2023-06-19 13:29:55 +04:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
2023-04-04 09:51:08 +04:00
|
|
|
|
}
|
|
|
|
|
}
|