2024-07-24 13:22:05 +04:00
|
|
|
|
using BeautySalonContracts.BindingModels;
|
|
|
|
|
using BeautySalonContracts.StorageContracts;
|
|
|
|
|
using BeautySalonContracts.ViewModels;
|
2024-07-23 21:32:13 +04:00
|
|
|
|
|
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
|
|
|
{
|
|
|
|
|
internal class PurchaseStorage : IPurchaseStorage
|
|
|
|
|
{
|
2024-07-24 13:22:05 +04:00
|
|
|
|
public PurchaseViewModel Deleted(PurchaseBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PurchaseViewModel GetElement(PurchaseBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<PurchaseViewModel> GetFilteredList(PurchaseBindingModel 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();
|
|
|
|
|
}
|
2024-07-23 21:32:13 +04:00
|
|
|
|
}
|
|
|
|
|
}
|