41 lines
936 B
C#
41 lines
936 B
C#
using BeautySalonContracts.BindingModels;
|
|
using BeautySalonContracts.SearchModels;
|
|
using BeautySalonContracts.StorageContracts;
|
|
using BeautySalonContracts.ViewModels;
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
{
|
|
internal class ReceiptStorage : IReceiptStorage
|
|
{
|
|
public ReceiptViewModel Delete(ReceiptBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ReceiptViewModel GetElement(ReceiptSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<ReceiptViewModel> GetFilteredList(ReceiptSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<ReceiptViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ReceiptViewModel Insert(ReceiptBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ReceiptViewModel Update(ReceiptBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|