public WeGroupProductActionList(int groupId, WeGroupProductAction[] productList)
     : base(groupId)
 {
     Product = new List<WeGroupProductAction>();
     Product.AddRange(productList);
 }
 public WeGroupProductActionList(int groupId, WeGroupProductAction product)
     : base(groupId)
 {
     Product = new List <WeGroupProductAction>();
     Product.Add(product);
 }
 public WeGroupProductActionList(int groupId, WeGroupProductAction product)
     : base(groupId)
 {
     Product = new List<WeGroupProductAction>();
     Product.Add(product);
 }