Exemplo n.º 1
0
 public Context(string st, string prodName, string catName, decimal lPrice, UnitsSoldRandomGenerator uSoldGenerator)
 {
     this.st             = st;
     this.prodName       = prodName;
     this.catName        = catName;
     this.lPrice         = lPrice;
     this.uSoldGenerator = uSoldGenerator;
 }
Exemplo n.º 2
0
 public void Generate()
 {
     foreach (DataRow region in Regions)
     {
         string state        = GetState(region);
         double regionWeight = GetRegionWeigtht(region);
         foreach (DataRow product in Products)
         {
             UnitsSoldRandomGenerator unitsSoldgenerator = CreateUnitsSoldGenerator(regionWeight, GetProductClass(product));
             Generate(new Context(state, GetProductName(product), GetCategoryName(product), GetListPrice(product), unitsSoldgenerator));
         }
     }
     EndGenerate();
 }