40 lines
902 B
C#
40 lines
902 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 PurchaseStorage : IPurchaseStorage
|
|
{
|
|
public PurchaseBindingModel? Delete(PurchaseSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public PurchaseBindingModel? GetElement(PurchaseSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IEnumerable<PurchaseBindingModel> GetList(PurchaseSearchModel? model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public PurchaseBindingModel? Insert(PurchaseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public PurchaseBindingModel? Update(PurchaseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|