2023-04-05 22:59:20 +04:00
|
|
|
|
using FurnitureContracts.BindingModels;
|
|
|
|
|
using FurnitureContracts.SearchModels;
|
|
|
|
|
using FurnitureContracts.ViewModel;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2023-04-05 23:14:46 +04:00
|
|
|
|
interface IOrdersLogic
|
2023-04-05 22:59:20 +04:00
|
|
|
|
{
|
|
|
|
|
List<OrdersViewModel>? ReadList(OrderSearchModel? model);
|
|
|
|
|
OrdersViewModel? ReadElement(OrderSearchModel model);
|
|
|
|
|
bool Create(OrdersBindingModel model);
|
|
|
|
|
bool Update(OrdersBindingModel model);
|
|
|
|
|
bool Delete(OrdersBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|