예제 #1
0
 public xportPdfForm(dbInterface dbInterface, emailHandler mail)
 {
     InitializeComponent();
     db        = dbInterface;
     this.mail = mail;
     db.namesToCombobox(cboEmails);
 }
예제 #2
0
 public createSubscriptionForm(dbInterface dbi)
 {
     InitializeComponent();
     db = dbi;
     db.namesToCombobox(cboEmails);
     cboAlarmType.DataSource = Enum.GetValues(typeof(AlarmType));
 }
예제 #3
0
 public deleteSubscriberForm(dbInterface db)
 {
     InitializeComponent();
     dbi = db;
     dbi.namesToCombobox(cboCustomerMail);
 }
예제 #4
0
 public alterSubscriberForm(dbInterface db)
 {
     InitializeComponent();
     dbi = db;
     dbi.namesToCombobox(cboEmails);
 }