stage9_10 #16

Merged
ns.potapov merged 98 commits from stage9_10 into main 2024-05-30 04:28:50 +04:00
4 changed files with 6 additions and 6 deletions
Showing only changes of commit 2047774700 - Show all commits

View File

@ -58,14 +58,14 @@ namespace PolyclinicBusinessLogic.BusinessLogics
return element;
}
public List<CourseViewModel>? ReadList(CourseSearchModel? model)
public List<CourseViewModel> ReadList(CourseSearchModel? model = null)
{
_logger.LogInformation("ReadList. Id:{Id}", model?.Id);
var list = model == null ? _courseStorage.GetFullList() : _courseStorage.GetFilteredList(model);
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
return new List<CourseViewModel>();
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;

View File

@ -58,14 +58,14 @@ namespace PolyclinicBusinessLogic.BusinessLogics
return element;
}
public List<SymptomViewModel>? ReadList(SymptomSearchModel? model)
public List<SymptomViewModel> ReadList(SymptomSearchModel? model = null)
{
_logger.LogInformation("ReadList. Name:{Name} Id:{Id}", model?.Name, model?.Id);
var list = model == null ? _symptomStorage.GetFullList() : _symptomStorage.GetFilteredList(model);
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
return new List<SymptomViewModel>();
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;

View File

@ -6,7 +6,7 @@ namespace PolyclinicContracts.BusinessLogicsContracts
{
public interface ICourseLogic
{
List<CourseViewModel>? ReadList(CourseSearchModel? model);
List<CourseViewModel> ReadList(CourseSearchModel? model = null);
CourseViewModel? ReadElement(CourseSearchModel model);
bool Create(CourseBindingModel model);
bool Update(CourseBindingModel model);

View File

@ -6,7 +6,7 @@ namespace PolyclinicContracts.BusinessLogicsContracts
{
public interface ISymptomLogic
{
List<SymptomViewModel>? ReadList(SymptomSearchModel? model);
List<SymptomViewModel> ReadList(SymptomSearchModel? model = null);
SymptomViewModel? ReadElement(SymptomSearchModel model);
bool Create(SymptomBindingModel model);
bool Update(SymptomBindingModel model);