16 lines
514 B
C#
16 lines
514 B
C#
|
using TransportCompanyContracts.BindingModels;
|
|||
|
using TransportCompanyContracts.SearchModels;
|
|||
|
using TransportCompanyContracts.ViewModels;
|
|||
|
|
|||
|
namespace TransportCompanyContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ICargoLogic
|
|||
|
{
|
|||
|
List<CargoViewModel>? ReadList(CargoSearchModel? model);
|
|||
|
CargoViewModel? ReadElement(CargoSearchModel model);
|
|||
|
bool Create(CargoBindingModel model);
|
|||
|
bool Update(CargoBindingModel model);
|
|||
|
bool Delete(CargoBindingModel model);
|
|||
|
}
|
|||
|
}
|