using PolyclinicDataModels.Models; namespace PolyclinicDatabaseImplement.Models { public class Recipe : IRecipeModel { public int ProceduresCount { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public string Comment { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public Dictionary ProcedureRecipes => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }