using TransportCompanyContracts.BindingModels; using TransportCompanyContracts.SearchModels; using TransportCompanyContracts.ViewModels; namespace TransportCompanyContracts.BusinessLogicsContracts { public interface ITransportLogic { List? ReadList(TransportSearchModel? model); TransportViewModel? ReadElement(TransportSearchModel model); bool Create(TransportBindingModel model); bool Update(TransportBindingModel model); bool Delete(TransportBindingModel model); } }