using System.Collections.Generic; using System.Linq; namespace GtaVUsersInfo { public class CarPrice { public string Name { get; set; } public int Price { get; set; } public static List ConvertToCarPriceList(List cars) { return cars.Select(car => new CarPrice { Name = car.Name, Price = car.Price }).ToList(); } } }