using TransportCompanyContracts.BindingModels; using TransportCompanyContracts.SearchModels; using TransportCompanyContracts.ViewModels; namespace TransportCompanyContracts.BusinessLogicsContracts { public interface IDriverLogic { List? ReadList(DriverSearchModel? model); DriverViewModel? ReadElement(DriverSearchModel model); bool Create(DriverBindingModel model); bool Update(DriverBindingModel model); bool Delete(DriverBindingModel model); } }