using BeautySalonContracts.BindingModels; using BeautySalonContracts.SearchModels; using BeautySalonContracts.ViewModels; namespace BeautySalonContracts.BusinessLogicsContracts { public interface IMasterLogic { List? ReadList(MasterSearchModel? model); MasterViewModel? ReadElement(MasterSearchModel model); bool Create(MasterBindingModel model); bool Update(MasterBindingModel model); bool Delete(MasterBindingModel model); } }