public static KeyValuePair <string, List <ProductValue> > CreateValue(this MultiSelectAttribute attribute, IEnumerable <string> data, string locale = null, string scope = null)
 {
     return(attribute.CreateValue((object)data, locale, scope));
 }
 public static KeyValuePair <string, List <ProductValue> > CreateValue(this MultiSelectAttribute attribute, string data, string locale = null, string scope = null)
 {
     return(attribute.CreateValue(new List <string> {
         data
     }, locale, scope));
 }