21 lines
645 B
C#
21 lines
645 B
C#
|
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 IPurchaseLogic
|
|||
|
{
|
|||
|
List<PurchaseViewModel>? ReadList(PurchaseSearchModel? model);
|
|||
|
bool CreateOrder(PurchaseBindingModel model);
|
|||
|
bool TakeOrderInWork(PurchaseBindingModel model);
|
|||
|
bool FinishOrder(PurchaseBindingModel model);
|
|||
|
bool DeliveryOrder(PurchaseBindingModel model);
|
|||
|
}
|
|||
|
}
|