PIAPS_CW/DatabaseImplement/Implements/SellStorage.cs

40 lines
869 B
C#
Raw Normal View History

2024-06-23 00:33:26 +04:00
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)
{
throw new NotImplementedException();
}
2024-06-23 00:33:26 +04:00
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();
}
}
}