13 lines
552 B
C#
13 lines
552 B
C#
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();
|
|
}
|
|
}
|