18 lines
658 B
C#
18 lines
658 B
C#
using PrecastConcretePlantContracts.BindingModels;
|
|
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 AddReinforced(ShopSearchModel model, IReinforcedModel reinforced, int count);
|
|
}
|
|
}
|