示例#1
0
 public TaxvendorManager(object products, object vendors, object year)
 {
     VendorJobSplit = new VendorAllocation[]
     {
         new VendorAllocation()
         {
             Allocation = 100, Price = 20, Share = 20f
         },
         new VendorAllocation()
         {
             Allocation = 120, Price = 550, Share = 30f
         },
         new VendorAllocation()
         {
             Allocation = 880, Price = 11, Share = 50f
         },
     };
 }
 public TaxvendorManager(object products, object vendors, object year)
 {
     VendorJobSplit = new VendorAllocation[]
                          {
                              new VendorAllocation(){Allocation = 100, Price = 20, Share = 20f},
                              new VendorAllocation(){Allocation = 120, Price = 550, Share = 30f},
                              new VendorAllocation(){Allocation = 880, Price = 11, Share = 50f},
                          };
 }