SUBD_TransportCompany/TransportCompany/TransportCompanyContracts/BusinessLogicsContracts/ITransportationLogic.cs

17 lines
656 B
C#
Raw Normal View History

2024-02-25 12:18:35 +04:00
using TransportCompanyContracts.BindingModels;
using TransportCompanyContracts.SearchModels;
using TransportCompanyContracts.ViewModels;
namespace TransportCompanyContracts.BusinessLogicsContracts
{
public interface ITransportationLogic
{
List<TransportationViewModel>? ReadList(TransportationSearchModel? searchModel);
bool CreateTransportation(TransportationBindingModel bindingModel);
bool DeliveredTransportation(TransportationBindingModel bindingModel);
bool ArrivedTransportation(TransportationBindingModel bindingModel);
bool IssueTransportation(TransportationBindingModel bindingModel);
}
}