コード例 #1
0
ファイル: FormFieldLogic.cs プロジェクト: ramyothman/RBM
 public bool Update( int FormDocumentId,  int FormFieldTypeId,  int FieldParentId,  string Title,  string HelpText,  int FormFieldOrder,  int FieldDegree,  bool HasOther,  string DefaultValue,  bool IsRequired,  string RegularExpValidation,  string ErrorText,  bool IsContactEmail,  bool IsContactMobile,  int ColumnCount,  bool IsSection,  bool IsPageBreak,  int Original_FormFieldId)
 {
     FormFieldDAC formfieldComponent = new FormFieldDAC();
     return formfieldComponent.UpdateFormField( FormDocumentId,  FormFieldTypeId,  FieldParentId,  Title,  HelpText,  FormFieldOrder,  FieldDegree,  HasOther,  DefaultValue,  IsRequired,  RegularExpValidation,  ErrorText,  IsContactEmail,  IsContactMobile,  ColumnCount,  IsSection,  IsPageBreak,  Original_FormFieldId);
 }
コード例 #2
0
ファイル: FormFieldLogic.cs プロジェクト: ramyothman/RBM
 public bool Update(FormField formfield ,int old_formFieldId)
 {
     FormFieldDAC formfieldComponent = new FormFieldDAC();
     return formfieldComponent.UpdateFormField( formfield.FormDocumentId,  formfield.FormFieldTypeId,  formfield.FieldParentId,  formfield.Title,  formfield.HelpText,  formfield.FormFieldOrder,  formfield.FieldDegree,  formfield.HasOther,  formfield.DefaultValue,  formfield.IsRequired,  formfield.RegularExpValidation,  formfield.ErrorText,  formfield.IsContactEmail,  formfield.IsContactMobile,  formfield.ColumnCount,  formfield.IsSection,  formfield.IsPageBreak,  old_formFieldId);
 }