using FoodOrdersContracts.BindingModels; using FoodOrdersContracts.BusinessLogicsContracts; using FoodOrdersContracts.SearchModels; using FoodOrdersContracts.ViewModels; namespace FoodOrdersBusinessLogic.BusinessLogics { public class ImplementerLogic : IImplementerLogic { public bool Create(ImplementerBindingModel model) { throw new NotImplementedException(); } public bool Delete(ImplementerBindingModel model) { throw new NotImplementedException(); } public ImplementerViewModel? ReadElement(ImplementerSearchModel model) { throw new NotImplementedException(); } public List? ReadList(ImplementerSearchModel? model) { throw new NotImplementedException(); } public bool Update(ImplementerBindingModel model) { throw new NotImplementedException(); } } }