public void AddToCustomerInquiryTypes(CustomerInquiryType customerInquiryType)
 {
     base.AddObject("CustomerInquiryTypes", customerInquiryType);
 }
 public static CustomerInquiryType CreateCustomerInquiryType(int customerInquiryTypeID)
 {
     CustomerInquiryType customerInquiryType = new CustomerInquiryType();
     customerInquiryType.CustomerInquiryTypeID = customerInquiryTypeID;
     return customerInquiryType;
 }