PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicDatabaseImplement/Models/Recipe.cs

13 lines
552 B
C#
Raw Normal View History

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<int, IRecipeModel> ProcedureRecipes => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}