PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicBusinessLogic/BusinessLogics/SymptomLogic.cs

36 lines
942 B
C#
Raw Normal View History

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();
}
}
}