public IEnumerable <Employee> Index()
        {
            //throw new Exception("Error in details");
            _logger.LogTrace("Log Trace");
            _logger.LogDebug("Log Debug");
            _logger.LogInformation("Log Information");
            _logger.LogWarning("Log Warning");
            _logger.LogError("Log Error");
            _logger.LogCritical("Log Critical");

            _doodle.Said();
            //_mediatorService.Notify("Notify Apple");
            _mediatorService.Query("Query Apple");

            return(_employeeRepository.GetAllEmployees());
        }