47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
|
using ConfectioneryContracts.BindingModels;
|
|||
|
using ConfectioneryContracts.SearchModels;
|
|||
|
using ConfectioneryContracts.StoragesContract;
|
|||
|
using ConfectioneryContracts.ViewModels;
|
|||
|
|
|||
|
namespace ConfectioneryListImplement
|
|||
|
{
|
|||
|
public class ShopStorage : IShopStorage
|
|||
|
{
|
|||
|
private readonly DataListSingleton _source;
|
|||
|
public ShopStorage()
|
|||
|
{
|
|||
|
_source = DataListSingleton.GetInstance();
|
|||
|
}
|
|||
|
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|