2024-07-25 18:44:30 +04:00

41 lines
949 B
C#

using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.StorageContracts;
using BeautySalonContracts.ViewModels;
namespace BeautySalonDatabaseImplement.Implements
{
internal class PurchaseStorage : IPurchaseStorage
{
public PurchaseViewModel Delete(PurchaseBindingModel model)
{
throw new NotImplementedException();
}
public PurchaseViewModel GetElement(PurchaseSearchModel model)
{
throw new NotImplementedException();
}
public List<PurchaseViewModel> GetFilteredList(PurchaseSearchModel model)
{
throw new NotImplementedException();
}
public List<PurchaseViewModel> GetFullList()
{
throw new NotImplementedException();
}
public PurchaseViewModel Insert(PurchaseBindingModel model)
{
throw new NotImplementedException();
}
public PurchaseViewModel Update(PurchaseBindingModel model)
{
throw new NotImplementedException();
}
}
}