Поправил логи в логике симптомов
This commit is contained in:
parent
70e50610c5
commit
6a8a2ae37c
@ -93,7 +93,7 @@ namespace PolyclinicBusinessLogic.BusinessLogics
|
|||||||
}
|
}
|
||||||
if (string.IsNullOrEmpty(model.Name))
|
if (string.IsNullOrEmpty(model.Name))
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException("Нет названия болезни", nameof(model.Name));
|
throw new ArgumentNullException("Нет названия симптома", nameof(model.Name));
|
||||||
}
|
}
|
||||||
_logger.LogInformation("Symptom. Name:{Name}. Id: {Id}", model.Name, model.Id);
|
_logger.LogInformation("Symptom. Name:{Name}. Id: {Id}", model.Name, model.Id);
|
||||||
var element = _symptomStorage.GetElement(new SymptomSearchModel
|
var element = _symptomStorage.GetElement(new SymptomSearchModel
|
||||||
@ -102,7 +102,7 @@ namespace PolyclinicBusinessLogic.BusinessLogics
|
|||||||
});
|
});
|
||||||
if (element != null && element.Id != model.Id)
|
if (element != null && element.Id != model.Id)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException("Болезнь с таким названием уже есть");
|
throw new InvalidOperationException("Симптом с таким названием уже есть");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user