public HealthDto CheckServiceHealth() { var dataAccessHealth = _repository.VerifyDatabaseConnection(); var healthResult = Mapper.Map <HealthDto>(dataAccessHealth); healthResult.ServiceHealthy = true; return(healthResult); }