/// <summary>
 /// Create a new OtherAuditItem object.
 /// </summary>
 /// <param name="otherAuditItemID">Initial value of OtherAuditItemID.</param>
 /// <param name="name">Initial value of Name.</param>
 /// <param name="email">Initial value of Email.</param>
 public static OtherAuditItem CreateOtherAuditItem(int otherAuditItemID, string name, string email)
 {
     OtherAuditItem otherAuditItem = new OtherAuditItem();
     otherAuditItem.OtherAuditItemID = otherAuditItemID;
     otherAuditItem.Name = name;
     otherAuditItem.Email = email;
     return otherAuditItem;
 }
 /// <summary>
 /// There are no comments for OtherAuditItem in the schema.
 /// </summary>
 public void AddToOtherAuditItem(OtherAuditItem otherAuditItem)
 {
     base.AddObject("OtherAuditItem", otherAuditItem);
 }