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);
|
2024-02-25 14:44:58 +04:00
|
|
|
|
bool ShippedTransportation(TransportationBindingModel bindingModel);
|
2024-02-25 12:18:35 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|