ASPNETCoreAngular2Demo.Repositories.FoodRepository.GetAll C# (CSharp) Method

GetAll() public method

public GetAll ( ) : List
return List
        public List<FoodItem> GetAll()
        {
            return _foods.Select(x => x.Value).ToList();
        }