ASPNETCoreAngular2Demo.Repositories.FoodRepository.GetAll C# (CSharp) 메소드

GetAll() 공개 메소드

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