This commit is contained in:
VictoriaPresnyakova 2023-06-16 00:29:00 +04:00
parent 1e81baa63e
commit f75f75f888
6 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
using JewelryStoreContracts.BindingModels;
using JewelryStoreContracts.SearchModels;
using JewelryStoreContracts.StoragesContracts;
using JewelryStoreContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreFileImplement.Implements
{
public class StoreStorage : IStoreStorage
{
public StoreViewModel? Delete(StoreBindingModel model)
{
throw new NotImplementedException();
}
public StoreViewModel? GetElement(StoreSearchModel model)
{
throw new NotImplementedException();
}
public List<StoreViewModel> GetFilteredList(StoreSearchModel model)
{
throw new NotImplementedException();
}
public List<StoreViewModel> GetFullList()
{
throw new NotImplementedException();
}
public StoreViewModel? Insert(StoreBindingModel model)
{
throw new NotImplementedException();
}
public StoreViewModel? Update(StoreBindingModel model)
{
throw new NotImplementedException();
}
}
}