/// <summary>
 /// Deprecated Method for adding a new object to the eFormFields EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToeFormFields(eFormField eFormField)
 {
     base.AddObject("eFormFields", eFormField);
 }
 /// <summary>
 /// Create a new eFormField object.
 /// </summary>
 /// <param name="eFormFieldID">Initial value of the eFormFieldID property.</param>
 /// <param name="formID">Initial value of the FormID property.</param>
 /// <param name="tabID">Initial value of the TabID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="isReadOnly">Initial value of the IsReadOnly property.</param>
 /// <param name="isVisible">Initial value of the IsVisible property.</param>
 /// <param name="isEnabled">Initial value of the IsEnabled property.</param>
 /// <param name="withLabel">Initial value of the WithLabel property.</param>
 /// <param name="isDeleted">Initial value of the IsDeleted property.</param>
 /// <param name="createdBy">Initial value of the CreatedBy property.</param>
 /// <param name="createdDate">Initial value of the CreatedDate property.</param>
 /// <param name="updatedBy">Initial value of the UpdatedBy property.</param>
 /// <param name="updatedDate">Initial value of the UpdatedDate property.</param>
 public static eFormField CreateeFormField(global::System.Int32 eFormFieldID, global::System.Int32 formID, global::System.Int32 tabID, global::System.String name, global::System.Boolean isReadOnly, global::System.Boolean isVisible, global::System.Boolean isEnabled, global::System.Boolean withLabel, global::System.Boolean isDeleted, global::System.Int32 createdBy, global::System.DateTime createdDate, global::System.Int32 updatedBy, global::System.DateTime updatedDate)
 {
     eFormField eFormField = new eFormField();
     eFormField.eFormFieldID = eFormFieldID;
     eFormField.FormID = formID;
     eFormField.TabID = tabID;
     eFormField.Name = name;
     eFormField.IsReadOnly = isReadOnly;
     eFormField.IsVisible = isVisible;
     eFormField.IsEnabled = isEnabled;
     eFormField.WithLabel = withLabel;
     eFormField.IsDeleted = isDeleted;
     eFormField.CreatedBy = createdBy;
     eFormField.CreatedDate = createdDate;
     eFormField.UpdatedBy = updatedBy;
     eFormField.UpdatedDate = updatedDate;
     return eFormField;
 }