PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopContracts/BusinessLogicsContracts/IShopLogic.cs

24 lines
786 B
C#
Raw Normal View History

2024-02-07 16:24:04 +04:00
using IceCreamShopContracts.BindingModels;
using IceCreamShopContracts.SearchModels;
using IceCreamShopContracts.ViewModels;
using IceCreamShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IceCreamShopContracts.BusinessLogicsContracts
{
public interface IShopLogic
{
List<ShopViewModel>? ReadList(ShopSearchModel? model);
ShopViewModel? ReadElement(ShopSearchModel model);
bool Create(ShopBindingModel model);
bool Update(ShopBindingModel model);
bool Delete(ShopBindingModel model);
bool MakeSupply(ShopSearchModel model, IIceCreamModel iceCream, int count);
2024-03-04 15:28:55 +04:00
bool MakeSell(IIceCreamModel iceCream, int count);
2024-02-07 16:24:04 +04:00
}
}