|
| 1 | +using System.Collections.Generic; |
| 2 | +using NTestDataBuilder.DataSources.Generators; |
| 3 | + |
| 4 | +namespace NTestDataBuilder.DataSources |
| 5 | +{ |
| 6 | + public class CompanySource : DataSource<string> |
| 7 | + { |
| 8 | + public CompanySource() |
| 9 | + : base() { } |
| 10 | + |
| 11 | + public CompanySource(IGenerator generator) |
| 12 | + : base(generator) { } |
| 13 | + |
| 14 | + protected override IList<string> InitializeList() |
| 15 | + { |
| 16 | + return new List<string> |
| 17 | + { |
| 18 | + "Wal-Mart Stores", |
| 19 | + "Exxon Mobil", |
| 20 | + "Chevron", |
| 21 | + "Phillips ", |
| 22 | + "Berkshire Hathaway", |
| 23 | + "Apple", |
| 24 | + "General Motors", |
| 25 | + "General Electric", |
| 26 | + "Valero Energy", |
| 27 | + "Ford Motor", |
| 28 | + "AT&T", |
| 29 | + "Fannie Mae", |
| 30 | + "CVS Caremark", |
| 31 | + "McKesson", |
| 32 | + "Hewlett-Packard", |
| 33 | + "Verizon Communications", |
| 34 | + "UnitedHealth Group", |
| 35 | + "J.P. Morgan Chase & Co.", |
| 36 | + "Cardinal Health", |
| 37 | + "International Business Machines", |
| 38 | + "Bank of America Corp.", |
| 39 | + "Costco Wholesale", |
| 40 | + "Kroger", |
| 41 | + "Express Scripts Holding", |
| 42 | + "Wells Fargo", |
| 43 | + "Citigroup", |
| 44 | + "Archer Daniels Midland", |
| 45 | + "Procter & Gamble", |
| 46 | + "Prudential Financial", |
| 47 | + "Boeing", |
| 48 | + "Freddie Mac", |
| 49 | + "AmerisourceBergen", |
| 50 | + "Marathon Petroleum", |
| 51 | + "Home Depot", |
| 52 | + "Microsoft", |
| 53 | + "Target", |
| 54 | + "Walgreen", |
| 55 | + "American International Group", |
| 56 | + "INTL FCStone", |
| 57 | + "MetLife", |
| 58 | + "Johnson & Johnson", |
| 59 | + "Caterpillar", |
| 60 | + "PepsiCo", |
| 61 | + "State Farm Insurance Cos.", |
| 62 | + "ConocoPhillips", |
| 63 | + "Comcast", |
| 64 | + "WellPoint", |
| 65 | + "Pfizer", |
| 66 | + "Amazon.com", |
| 67 | + "United Technologies", |
| 68 | + "Dell", |
| 69 | + "Dow Chemical", |
| 70 | + "United Parcel Service", |
| 71 | + "Intel", |
| 72 | + "Google", |
| 73 | + "Lowe's", |
| 74 | + "Coca-Cola", |
| 75 | + "Merck", |
| 76 | + "Lockheed Martin", |
| 77 | + "Cisco Systems", |
| 78 | + "Best Buy", |
| 79 | + "Safeway", |
| 80 | + "FedEx", |
| 81 | + "Enterprise Products Partners", |
| 82 | + "Sysco", |
| 83 | + "Walt Disney", |
| 84 | + "Johnson Controls", |
| 85 | + "Goldman Sachs Group", |
| 86 | + "CHS", |
| 87 | + "Abbott Laboratories", |
| 88 | + "Sears Holdings", |
| 89 | + "DuPont", |
| 90 | + "Humana", |
| 91 | + "World Fuel Services", |
| 92 | + "Hess", |
| 93 | + "Ingram Micro", |
| 94 | + "Plains All American Pipeline", |
| 95 | + "Honeywell International", |
| 96 | + "United Continental Holdings", |
| 97 | + "Oracle", |
| 98 | + "Liberty Mutual Insurance Group", |
| 99 | + "HCA Holdings", |
| 100 | + "Delta Air Lines", |
| 101 | + "Aetna", |
| 102 | + "Deere", |
| 103 | + "Supervalu", |
| 104 | + "Sprint Nextel", |
| 105 | + "Mondelēz International", |
| 106 | + "New York Life Insurance", |
| 107 | + "American Express", |
| 108 | + "News Corp.", |
| 109 | + "Allstate", |
| 110 | + "Tyson Foods", |
| 111 | + "Massachusetts Mutual Life Insurance", |
| 112 | + "Tesoro", |
| 113 | + "Morgan Stanley", |
| 114 | + "TIAA-CREF", |
| 115 | + "General Dynamics", |
| 116 | + "Philip Morris International", |
| 117 | + "Nationwide" |
| 118 | + }; |
| 119 | + } |
| 120 | + } |
| 121 | +} |
0 commit comments