Application.Web.Controllers.LaptopsController.GetAllLaptops C# (CSharp) Метод

GetAllLaptops() приватный Метод

private GetAllLaptops ( ) : IQueryable
Результат IQueryable
        private IQueryable<LaptopViewModel> GetAllLaptops()
        {
            var data = this.Data.Laptops.All()
                .Select(x => new LaptopViewModel
                {
                    Id = x.ID,
                    ImageUrl = x.ImageUrl,
                    Manufacturer = x.Manufacturer.Name,
                    Model = x.Model,
                    Price = x.Price
                }).OrderBy(x => x.Id);

            return data;
        }
        public ActionResult Details(int id)