17 lines
658 B
C#
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);
|
|
|
|
}
|
|
}
|