Presnyakova V.V Lab_2_Hard #12

Closed
Victoria_Presnyakova wants to merge 26 commits from Lab_2_Hard into Lab_1_Hard
6 changed files with 45 additions and 0 deletions
Showing only changes of commit f75f75f888 - Show all commits

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();
}
}
}