41 lines
950 B
C#
41 lines
950 B
C#
using BeautySalonContracts.BindingModels;
|
|
using BeautySalonContracts.SearchModels;
|
|
using BeautySalonContracts.StorageContracts;
|
|
using BeautySalonContracts.ViewModels;
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
{
|
|
internal class PurchaseStorage : IPurchaseStorage
|
|
{
|
|
public PurchaseViewModel Deleted(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();
|
|
}
|
|
}
|
|
}
|