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)
|
|
|
|
|
{
|
2024-06-23 16:10:45 +04:00
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|