17 lines
656 B
C#
17 lines
656 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 IssueTransportation(TransportationBindingModel bindingModel);
|
|||
|
|
|||
|
}
|
|||
|
}
|