40 lines
924 B
C#
Raw Normal View History

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 ProcedureStorage : IProcedureStorage
{
2024-07-24 13:22:05 +04:00
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();
}
2024-07-23 21:32:13 +04:00
}
}