36 lines
942 B
C#
36 lines
942 B
C#
using PolyclinicContracts.BindingModels;
|
|
using PolyclinicContracts.BusinessLogicsContracts;
|
|
using PolyclinicContracts.SearchModels;
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
namespace PolyclinicBusinessLogic.BusinessLogics
|
|
{
|
|
public class SymptomLogic : ISymptomLogic
|
|
{
|
|
public bool Create(SymptomBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Delete(SymptomBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public SymptomViewModel? ReadElement(SymptomSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<SymptomViewModel>? ReadList(SymptomSearchModel? model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Update(SymptomBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|