PIbd-21_Raspaev_N.I._FoodOr.../FoodOrders/FoodOrdersBusinessLogic/BusinessLogics/ClientLogic.cs

35 lines
932 B
C#

using FoodOrdersContracts.BindingModels;
using FoodOrdersContracts.BusinessLogicsContracts;
using FoodOrdersContracts.SearchModels;
using FoodOrdersContracts.ViewModels;
namespace FoodOrdersBusinessLogic.BusinessLogics
{
public class ClientLogic : IClientLogic
{
public bool Create(ClientBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(ClientBindingModel model)
{
throw new NotImplementedException();
}
public ClientViewModel? ReadElement(ClientSearchModel model)
{
throw new NotImplementedException();
}
public List<ClientViewModel>? ReadList(ClientSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(ClientBindingModel model)
{
throw new NotImplementedException();
}
}
}