41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using PolyclinicContracts.BindingModels;
|
|
using PolyclinicContracts.SearchModels;
|
|
using PolyclinicContracts.StoragesContracts;
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
namespace PolyclinicDatabaseImplement.Implements
|
|
{
|
|
public class SymptomStorage : ISymptomStorage
|
|
{
|
|
public SymptomViewModel? Delete(SymptomBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public SymptomViewModel? GetElement(SymptomSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<SymptomViewModel> GetFilteredList(SymptomSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<SymptomViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public SymptomViewModel? Insert(SymptomBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public SymptomViewModel? Update(SymptomBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|