28 lines
783 B
C#
28 lines
783 B
C#
|
using PrecastConcretePlantContracts.BindingModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using PrecastConcretePlantContracts.SearchModels;
|
|||
|
using PrecastConcretePlantContracts.ViewModels;
|
|||
|
using PrecastConcretePlantDataModels.Models;
|
|||
|
|
|||
|
namespace PrecastConcretePlantContracts.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 ReplenishShop(ShopSearchModel shopModel, IReinforcedModel reinforced, int count);
|
|||
|
}
|
|||
|
}
|