ASPNETCoreAngular2Demo.Repositories.FoodRepository.GetAll C# (CSharp) Метод

GetAll() публичный Метод

public GetAll ( ) : List
Результат List
        public List<FoodItem> GetAll()
        {
            return _foods.Select(x => x.Value).ToList();
        }