2024-07-25 18:44:30 +04:00

41 lines
968 B
C#

using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.StorageContracts;
using BeautySalonContracts.ViewModels;
namespace BeautySalonDatabaseImplement.Implements
{
internal class ProcedureStorage : IProcedureStorage
{
public ProcedureViewModel Delete(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();
}
}
}