public ConfigurationBuilder AddProduct(string id, ProductType type, IDs storeIDs, PayoutDefinition payout)
 {
     return(AddProduct(id, type, storeIDs, new List <PayoutDefinition> {
         payout
     }));
 }
 public ProductDefinition(string id, string storeSpecificId, ProductType type, bool enabled, PayoutDefinition payout) : this(id, storeSpecificId, type, enabled, new List <PayoutDefinition> {
     payout
 })
 {
 }