PIAPS_CW/DatabaseImplement/Implements/SellStorage.cs

40 lines
831 B
C#

using Contracts.BindingModels;
using Contracts.SearchModels;
using Contracts.StorageContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DatabaseImplement.Implements
{
public class SellStorage : ISellStorage
{
public SellBindingModel? Delete(SellSearchModel model)
{
return new();
}
public SellBindingModel? GetElement(SellSearchModel model)
{
throw new NotImplementedException();
}
public IEnumerable<SellBindingModel> GetList(SellSearchModel? model)
{
throw new NotImplementedException();
}
public SellBindingModel? Insert(SellBindingModel model)
{
throw new NotImplementedException();
}
public SellBindingModel? Update(SellBindingModel model)
{
throw new NotImplementedException();
}
}
}