16 lines
461 B
C#
16 lines
461 B
C#
|
using STOContracts.BindingModels;
|
|||
|
using STOContracts.SearchModels;
|
|||
|
using STOContracts.ViewModels;
|
|||
|
|
|||
|
namespace STOContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ICarLogic
|
|||
|
{
|
|||
|
List<CarViewModel>? ReadList(CarSearchModel? model);
|
|||
|
CarViewModel? ReadElement(CarSearchModel model);
|
|||
|
bool Create(CarBindingModel model);
|
|||
|
bool Update(CarBindingModel model);
|
|||
|
bool Delete(CarBindingModel model);
|
|||
|
}
|
|||
|
}
|