ISEbd-21_Khaliullov_R.A._Co.../Canteen/CanteenContracts/BusinessLogicsContracts/ICookLogic.cs

21 lines
585 B
C#
Raw Normal View History

2024-04-30 18:48:42 +04:00
using CanteenContracts.BindingModels;
using CanteenContracts.SearchModel;
using CanteenContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.BusinessLogicsContracts
{
public interface ICookLogic
{
List<CookViewModel>? ReadList(CookSearchModel? model);
CookViewModel? ReadElement(CookSearchModel model);
bool Create(CookBindingModel model);
bool Update(CookBindingModel model);
bool Delete(CookBindingModel model);
}
}