using CanteenContracts.BindingModels; using CanteenContracts.SearchModel; using CanteenContracts.View; using CanteenDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CanteenContracts.BusinessLogicsContracts { public interface IProductLogic { List? ReadList(ProductSearchModel? model); ProductViewModel? ReadElement(ProductSearchModel model); bool Create(ProductBindingModel model); bool Update(ProductBindingModel model); bool Delete(ProductBindingModel model); bool AddCooksToProduct(ProductSearchModel model, ICookModel cook); } }