AspNet5.Controllers.TestWithBaseController.GetAll C# (CSharp) Method

GetAll() private method

private GetAll ( ) : IEnumerable
return IEnumerable
        public IEnumerable<string> GetAll()
        {
            _logger.LogInformation("Executing Http Get all");
            return new string[] { "test data one", "test data two" };
        }
TestWithBaseController