Example #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="clientid"></param>
 public Form(string clientid)
 {
     this.ClientID    = clientid;
     FormProperties   = new FormProperty();
     Actions          = new List <UIAction.Action>();
     FormKeys         = new List <UIFormKey>();
     this.ComponentID = "";
     FormFields       = new List <FormField>();
 }
Example #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="clientid"></param>
 public Form(string clientid, List <UIFormKey> formKeys)
 {
     this.ClientID    = clientid;
     this.Name        = "";
     this.Description = "";
     this.ComponentID = "";
     this.FormID      = "";
     this.FormKeys    = formKeys;
     FormProperties   = new FormProperty();
     Actions          = new List <UIAction.Action>();
     this.ComponentID = "";
     FormFields       = new List <FormField>();
 }