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

36 lines
951 B
C#
Raw Normal View History

using PolyclinicContracts.BindingModels;
using PolyclinicContracts.BusinessLogicsContracts;
using PolyclinicContracts.SearchModels;
using PolyclinicContracts.ViewModels;
namespace PolyclinicBusinessLogic.BusinessLogics
{
public class DiagnoseLogic : IDiagnoseLogic
{
public bool Create(DiagnoseBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(DiagnoseBindingModel model)
{
throw new NotImplementedException();
}
public DiagnoseViewModel? ReadElement(DiagnoseSearchModel model)
{
throw new NotImplementedException();
}
public List<DiagnoseViewModel>? ReadList(DiagnoseSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(DiagnoseBindingModel model)
{
throw new NotImplementedException();
}
}
}