Пример #1
0
        public IEnumerable <User> GetAll()
        {
            // Log the API call
            _logger.LogInformation($"Getting all users from persistent storage");

            // Return all users
            return(_landmarkRepository.GetAllUsers());
        }