/// <summary>
 /// Full constructor that accepts the name of the control, presentation layer, and optional parameters
 /// to use when constructing the control
 /// </summary>
 /// <param name="filterUIHint">The name of the control</param>
 /// <param name="presentationLayer">The presentation layer</param>
 /// <param name="controlParameters">The list of parameters for the control</param>
 public FilterUIHintAttribute(string filterUIHint, string presentationLayer, params object[] controlParameters)
 {
     this._implementation = new UIHintAttribute.UIHintImplementation(filterUIHint, presentationLayer, controlParameters);
 }
 /// <summary>
 /// Full constructor that accepts the name of the control, presentation layer, and optional parameters
 /// to use when constructing the control
 /// </summary>
 /// <param name="filterUIHint">The name of the control</param>
 /// <param name="presentationLayer">The presentation layer</param>
 /// <param name="controlParameters">The list of parameters for the control</param>
 public FilterUIHintAttribute(string filterUIHint, string presentationLayer, params object[] controlParameters)
 {
     this._implementation = new UIHintAttribute.UIHintImplementation(filterUIHint, presentationLayer, controlParameters);
 }