示例#1
0
 public CardListForm getCardListForm_select()
 {
     if (cardListForm_select == null || cardListForm_select.IsDisposed)
     {
         cardListForm_select = new CardListForm(mainForm, 0);
         cardListForm_select.initVersions(getVersions(),
                                          UpdateType.CardUpdate);
         appendEvent(cardListForm_select);
     }
     return(cardListForm_select);
 }
示例#2
0
 public CardListForm getCardListForm()
 {
     if (cardListForm == null || cardListForm.IsDisposed)
     {
         cardListForm = new CardListForm(mainForm, 1);
         cardListForm.initVersions(getVersions(),
                                   UpdateType.CardUpdate, UpdateType.ConsumeUpdate, UpdateType.CustomerUpdate);
         appendEvent(cardListForm);
     }
     return(cardListForm);
 }