SUBD_TransportCompany/TransportCompany/TransportCompanyContracts/BusinessLogicsContracts/ITransportationLogic.cs

17 lines
658 B
C#

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 ShippedTransportation(TransportationBindingModel bindingModel);
}
}