41 lines
969 B
C#
41 lines
969 B
C#
using BeautySalonContracts.BindingModels;
|
|
using BeautySalonContracts.SearchModels;
|
|
using BeautySalonContracts.StorageContracts;
|
|
using BeautySalonContracts.ViewModels;
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
{
|
|
internal class ProcedureStorage : IProcedureStorage
|
|
{
|
|
public ProcedureViewModel Deleted(ProcedureBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ProcedureViewModel GetElement(ProcedureSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<ProcedureViewModel> GetFilteredList(ProcedureSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<ProcedureViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ProcedureViewModel Insert(ProcedureBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ProcedureViewModel Update(ProcedureBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|