PIbd-23_Abazov_A.A._Confect.../Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IIngredientLogic.cs

21 lines
658 B
C#
Raw Normal View History

using ConfectioneryContracts.BindingModels;
using ConfectioneryContracts.SearchModels;
using ConfectioneryContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.BusinessLogicsContracts
{
public interface IIngredientLogic
{
List<IngredientViewModel>? ReadList(IngredientSearchModel? model);
IngredientViewModel? ReadElement(IngredientSearchModel model);
bool Create(IngredientBindingModel model);
bool Update(IngredientBindingModel model);
bool Delete(IngredientBindingModel model);
}
}