ASPNETCoreAngular2Demo.Repositories.FoodRepository.GetSingle C# (CSharp) Méthode

GetSingle() public méthode

public GetSingle ( int id ) : FoodItem
id int
Résultat ASPNETCoreAngular2Demo.Models.FoodItem
        public FoodItem GetSingle(int id)
        {
            return _foods.FirstOrDefault(x => x.Key == id).Value;
        }