예제 #1
0
 //构造函数
 public WaitForm(BathDBDataContext dc, WaiterItem room, WaitManagementForm rm)
 {
     db = dc;
     m_rmForm = rm;
     if (room != null)
     {
         newWaiterItem = false;
         m_WaiterItem = room;
     }
     InitializeComponent();
 }
예제 #2
0
 //构造函数
 public WaitForm(BathDBDataContext dc, WaiterItem room, WaitManagementForm rm)
 {
     db       = dc;
     m_rmForm = rm;
     if (room != null)
     {
         newWaiterItem = false;
         m_WaiterItem  = room;
     }
     InitializeComponent();
 }
예제 #3
0
 //服务档案管理
 private void btnWaiter_Click(object sender, EventArgs e)
 {
     WaitManagementForm form = new WaitManagementForm();
     form.ShowDialog();
 }
예제 #4
0
        //服务档案管理
        private void btnWaiter_Click(object sender, EventArgs e)
        {
            WaitManagementForm form = new WaitManagementForm();

            form.ShowDialog();
        }