public Cashier(Employee employee)
 {
     InitializeComponent();
     _context        = new SeeYouLatteEntities();
     _orderdetails   = new List <OrderDetail>();
     currentEmployee = employee;
 }
예제 #2
0
 public NewCategory()
 {
     InitializeComponent();
     _context = new SeeYouLatteEntities();
 }
예제 #3
0
 public NewProduct()
 {
     InitializeComponent();
     _context = new SeeYouLatteEntities();
 }
예제 #4
0
 public Login()
 {
     InitializeComponent();
     _context = new SeeYouLatteEntities();
 }
예제 #5
0
 public Dashboard()
 {
     InitializeComponent();
     _context = new SeeYouLatteEntities();
 }
예제 #6
0
 public DeleteEmployee()
 {
     InitializeComponent();
     _context = new SeeYouLatteEntities();
 }
예제 #7
0
 public Barista()
 {
     InitializeComponent();
     _context = new SeeYouLatteEntities();
 }