36 lines
925 B
C#

using FurnitureContracts.BindingModels;
using FurnitureContracts.BusinessLogicsContracts;
using FurnitureContracts.SearchModels;
using FurnitureContracts.ViewModel;
namespace FurnitureBusinessLogic.BusinessLogics
{
public class OrdersLogic : IOrdersLogic
{
public bool Create(OrdersBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(OrdersBindingModel model)
{
throw new NotImplementedException();
}
public OrdersViewModel? ReadElement(OrderSearchModel model)
{
throw new NotImplementedException();
}
public List<OrdersViewModel>? ReadList(OrderSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(OrdersBindingModel model)
{
throw new NotImplementedException();
}
}
}