CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BusinessLogicContracts/IOrderLogic.cs

24 lines
812 B
C#
Raw Normal View History

using ComputerShopContracts.BindingModels;
using ComputerShopContracts.SearchModels;
using ComputerShopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.BusinessLogicContracts
{
public interface IOrderLogic
{
List<OrderViewModel>? ReadList(OrderSearchModel? model);
bool CreateOrder(OrderBindingModel model);
2023-05-20 00:08:47 +04:00
bool Update(OrderBindingModel model);
bool Delete(OrderBindingModel model);
bool TakeOrderInWork(OrderBindingModel model);
bool FinishOrder(OrderBindingModel model);
bool DeliveryOrder(OrderBindingModel model);
2024-07-26 02:49:24 +04:00
bool AddComponent(OrderSearchModel ordermodel, ComponentSearchModel model, int amount);
}
}