public void Edit(Hospital hospital) { try { _hospitalRepository.Edit(hospital); _logger.LogInformation("The hospital was updated!"); } catch (Exception exception) { _logger.LogError("An error occurred while updating the hospital" + " | " + exception); throw; } }