2024-04-17 18:23:27 +04:00
|
|
|
|
using PolyclinicDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicContracts.BindingModels
|
|
|
|
|
{
|
2024-04-17 21:56:41 +04:00
|
|
|
|
public class ProcedureBindingModel : IProcedureModel
|
2024-04-17 18:23:27 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string Comment { get; set; } = string.Empty;
|
2024-04-17 22:18:05 +04:00
|
|
|
|
public Dictionary<int, (IRecipeModel, int)> ProcedureReciept { get; set; } = new();
|
2024-04-17 21:56:41 +04:00
|
|
|
|
|
2024-04-17 18:23:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|