AspNet5.Controllers.TestWithBaseController.GetAll C# (CSharp) Метод

GetAll() приватный Метод

private GetAll ( ) : IEnumerable
Результат IEnumerable
        public IEnumerable<string> GetAll()
        {
            _logger.LogInformation("Executing Http Get all");
            return new string[] { "test data one", "test data two" };
        }
TestWithBaseController