46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
|
using PrecastConcretePlantContracts.BindingModels;
|
|||
|
using PrecastConcretePlantContracts.SearchModels;
|
|||
|
using PrecastConcretePlantContracts.StoragesContract;
|
|||
|
using PrecastConcretePlantContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PrecastConcretePlantFileImplement
|
|||
|
{
|
|||
|
public class ShopStorage : IShopStorage
|
|||
|
{
|
|||
|
public ShopViewModel? Delete(ShopBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ShopViewModel? GetElement(ShopSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<ShopViewModel> GetFilteredList(ShopSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<ShopViewModel> GetFullList()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ShopViewModel? Insert(ShopBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ShopViewModel? Update(ShopBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|