Esempio n. 1
0
        public virtual CategoryItemForm getCustomerCIForm_Select()
        {
            customerCIForm_select = new CustomerCategoryItemForm(0, CategoryItemTypeConfs.CategoryItemType_Customer, LabelUtility.DATA_CUSTOMER, this.mainForm);
            customerCIForm_select.initVersions(getVersions(), UpdateType.CustomerCategoryUpdate, UpdateType.CustomerUpdate);
            appendEvent(customerCIForm_select);

            return(customerCIForm_select);
        }
Esempio n. 2
0
 public virtual CategoryItemForm getCustomerCIForm()
 {
     if (customerCIForm == null || customerCIForm.IsDisposed)
     {
         customerCIForm = new CustomerCategoryItemForm(1, CategoryItemTypeConfs.CategoryItemType_Customer, LabelUtility.DATA_CUSTOMER, this.mainForm);
         customerCIForm.initVersions(getVersions(), UpdateType.CustomerCategoryUpdate, UpdateType.CustomerUpdate);
         appendEvent(customerCIForm);
     }
     return(customerCIForm);
 }