35 lines
977 B
C#
35 lines
977 B
C#
|
using FoodOrdersContracts.BindingModels;
|
|||
|
using FoodOrdersContracts.BusinessLogicsContracts;
|
|||
|
using FoodOrdersContracts.SearchModels;
|
|||
|
using FoodOrdersContracts.ViewModels;
|
|||
|
|
|||
|
namespace FoodOrdersBusinessLogic.BusinessLogics
|
|||
|
{
|
|||
|
public class ImplementerLogic : IImplementerLogic
|
|||
|
{
|
|||
|
public bool Create(ImplementerBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool Delete(ImplementerBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ImplementerViewModel? ReadElement(ImplementerSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool Update(ImplementerBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|