40 lines
924 B
C#
40 lines
924 B
C#
using BeautySalonContracts.BindingModels;
|
|
using BeautySalonContracts.StorageContracts;
|
|
using BeautySalonContracts.ViewModels;
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
{
|
|
internal class ProcedureStorage : IProcedureStorage
|
|
{
|
|
public ProcedureViewModel Deleted(ProcedureBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ProcedureViewModel GetElement(ProcedureBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<ProcedureViewModel> GetFilteredList(ProcedureBindingModel 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();
|
|
}
|
|
}
|
|
}
|