PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicBusinessLogic/BusinessLogics/RecipeLogic.cs

36 lines
933 B
C#

using PolyclinicContracts.BindingModels;
using PolyclinicContracts.BusinessLogicsContracts;
using PolyclinicContracts.SearchModels;
using PolyclinicContracts.ViewModels;
namespace PolyclinicBusinessLogic.BusinessLogics
{
public class RecipeLogic : IRecipeLogic
{
public bool Create(RecipeBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(RecipeBindingModel model)
{
throw new NotImplementedException();
}
public RecipeViewModel? ReadElement(RecipeSearchModel model)
{
throw new NotImplementedException();
}
public List<RecipeViewModel>? ReadList(RecipeSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(RecipeBindingModel model)
{
throw new NotImplementedException();
}
}
}