ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceContracts/BusinessLogicsContracts/ICustomerLogic.cs

16 lines
475 B
C#

using CarServiceContracts.BindingModels;
using CarServiceContracts.SearchModels;
using CarServiceContracts.ViewModels;
namespace CarServiceContracts.BusinessLogicsContracts
{
public interface ICustomerLogic
{
List<CustomerViewModel>? ReadList(CustomerSearchModel? model);
CustomerViewModel? ReadElement(CustomerSearchModel model);
bool Create(CustomerBindingModel model);
bool Update(CustomerBindingModel model);
bool Delete(CustomerBindingModel model);
}
}