CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BusinessLogicContracts/IPurchaseLogic.cs

21 lines
657 B
C#
Raw Normal View History

2023-04-05 18:31:49 +04:00
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 CreatePurchase(PurchaseBindingModel model);
bool TakePurchaseInWork(PurchaseBindingModel model);
bool FinishPurchase(PurchaseBindingModel model);
bool DeliveryPurchase(PurchaseBindingModel model);
2023-04-05 18:31:49 +04:00
}
}