示例#1
0
 public TellerRate(Employee emp)
 {
     this.tq       = TellerQueue.getInstance();
     this.connect  = ConnectDatabase.getInstance();
     this.employee = emp;
     InitializeComponent();
     employeename.Content = emp.name;
 }
 public QMShowQueue()
 {
     tq           = TellerQueue.getInstance();
     csq          = CSQueue.getInstance();
     this.connect = ConnectDatabase.getInstance();
     InitializeComponent();
     tellerqueue.Content = "";
     csqueue.Content     = "";
     init();
 }