Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. // GAMERS
  2.  
  3. List<Product> gpu_list = new List<Product>();
  4. gpu_list.Add(new Product { Price = "1503,94€", selected = false, Name = "GeForce GTX TITAN Z PCB", Id = "GPU1", Img = "/Assets/geforce-gtx-titan.png", brand = "nVidia" });
  5. gpu_list.Add(new Product { Price = "527,93€", selected = false, Name = "GeForce GTX 970", Id = "GPU2", Img = "/Assets/nvidia-geforce-gtx.png", brand = "nVidia" });
  6. gpu_list.Add(new Product { Price = "250,90€", selected = false, Name = "R9 290X GAMING 8G", Id = "GPU3", Img = "/Assets/radeon-r9.png", brand = "Radeon" });
  7.  
  8. List<Product> motherboard_list = new List<Product>();
  9. motherboard_list.Add(new Product { Price = "194,99€", selected = false, Name = "Z170a GAMING M5 ", Id = "MB1", Img = "/Assets/msi-z170a-gaming-m5.png", brand = "MSI" });
  10. motherboard_list.Add(new Product { Price = "152,99€", selected = false, Name = "GA-Z170XP-SLI", Id = "MB2", Img = "/Assets/gigabyte-ga-z170xp-sli.png", brand = "Gigabyte" });
  11. motherboard_list.Add(new Product { Price = "74,95 €", selected = false, Name = "970A-G43", Id = "MB3", Img = "/Assets/msi-970a-g43.png", brand = "MSI" });
  12.  
  13. List<Product> cpu_list = new List<Product>();
  14. cpu_list.Add(new Product { Price = "69,10 €", selected = false, Name = "Athlon-X4-845", Id = "CPU1", Img = "/Assets/AMD-Athlon-X4-845.png", brand = "AMD" });
  15. cpu_list.Add(new Product { Price = "227,95 €", selected = false, Name = "FX 9370", Id = "CPU2", Img = "/Assets/AMD-FX-9370.png", brand = "AMD" });
  16. cpu_list.Add(new Product { Price = "50,23 €", selected = false, Name = "AM1 ATHLON 5350 ", Id = "CPU3", Img = "/Assets/AM1-ATHLON-5350.jpg", brand = "AMD" });
  17.  
  18. // DESKTOP
  19.  
  20. List<Product> gpu_list = new List<Product>();
  21. gpu_list.Add(new Product { Price = "232,99 €", selected = false, Name = "GeForce GTX 1050 Ti SC GAMING", Id = "GPU4", Img = "/Assets/GeForce-GTX-1050-Ti-SC-GAMING", brand = "nVidia" });
  22. gpu_list.Add(new Product { Price = "218,99 €", selected = false, Name = "GeForce GTX 1050 Ti OC Edition", Id = "GPU5", Img = "/Assets/zt-p10510b-10.png", brand = "ZOTAC" });
  23. gpu_list.Add(new Product { Price = "195,00 €", selected = false, Name = "GeForce GTX 1050 Ti D5 4G", Id = "GPU6", Img = "/Assets/gigabyte-geforce-gtx-1050-ti-d5-4g.png", brand = "Gigabyte" });
  24.  
  25. List<Product> motherboard_list = new List<Product>();
  26. motherboard_list.Add(new Product { Price = "173,60 €", selected = false, Name = "GA-Z97X-SLI", Id = "MB4", Img = "/Assets/ga-z97x-sli-1.png", brand = "Gigabyte" });
  27. motherboard_list.Add(new Product { Price = "136,93 €", selected = false, Name = "GA-H170-D3H-4", Id = "MB5", Img = "/Assets/ga-h170-d3h-4", brand = "Gigabyte" });
  28. motherboard_list.Add(new Product { Price = "109,99 €", selected = false, Name = "M5A97 PLUS", Id = "MB6", Img = "/Assets/asus-m5a97_plus-01.png", brand = "ASUS" });
  29.  
  30. List<Product> cpu_list = new List<Product>();
  31. cpu_list.Add(new Product { Price = "789,10 €", selected = false, Name = "Core i7-6950X Processor Extreme Edition", Id = "CPU4", Img = "/Assets/inter-core-i7-extreme.png", brand = "Intel" });
  32. cpu_list.Add(new Product { Price = "689,95 €", selected = false, Name = "Core i7 5820K", Id = "CPU5", Img = "/Assets/Intel-Core-i7-5820K.gif", brand = "Intel" });
  33. cpu_list.Add(new Product { Price = "594,00 €", selected = false, Name = "Core-i7-3930K", Id = "CPU6", Img = "/Assets/Intel-Core-i7-3930K.gif", brand = "Intel" });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement