PIAPS_CW/DatabaseImplement/Implements/PurchaseStorage.cs
2024-06-23 00:33:26 +04:00

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