Esempio n. 1
0
 public Pricing(
     Int32 id,
     PricingIdentity identity
     )
 {
     Id       = id;
     Identity = identity;
 }
Esempio n. 2
0
 public Pricing(
     Int32 id,
     PricingIdentity identity,
     List <PricingDriver> drivers,
     List <PriceListGroup> priceListGroups,
     List <FilterGroup> filterGroups,
     List <PricingResult> results
     )
 {
     Id              = id;
     Identity        = identity;
     Drivers         = drivers;
     PriceListGroups = priceListGroups;
     FilterGroups    = filterGroups;
     Results         = results;
 }