21 lines
604 B
C#
21 lines
604 B
C#
|
using PolyclinicContracts.BindingModels;
|
|||
|
using PolyclinicContracts.SearchModels;
|
|||
|
using PolyclinicContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PolyclinicContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IRecipeLogic
|
|||
|
{
|
|||
|
List<RecipeView>? ReadList(RecipeSearchModel? model);
|
|||
|
RecipeView? ReadElement(RecipeSearchModel model);
|
|||
|
bool Create(RecipeBindingModel model);
|
|||
|
bool Update(RecipeBindingModel model);
|
|||
|
bool Delete(RecipeBindingModel model);
|
|||
|
}
|
|||
|
}
|