Exemplo n.º 1
0
 private void AddSupplier_Click(object sender, RoutedEventArgs e)
 {
     ProductViewModel cancel = new ProductViewModel();
     cancel.Cancel_Product();
     AddSupplier _AS = new AddSupplier();
     _AS.ShowDialog();
 }
Exemplo n.º 2
0
 private void SupplierListing_Click(object sender, RoutedEventArgs e)
 {
     ProductViewModel cancel = new ProductViewModel();
     cancel.Cancel_Product();
     SupplierListing _SL = new SupplierListing();
     _SL.ShowDialog();
 }
Exemplo n.º 3
0
 private void ProductListing_Click(object sender, RoutedEventArgs e)
 {
     ProductViewModel cancel = new ProductViewModel();
     cancel.Cancel_Product();
     Product_Listing _PL = new Product_Listing();
     _PL.ShowDialog();
 }
Exemplo n.º 4
0
 private void AddProduct_Click(object sender, RoutedEventArgs e)
 {
     ProductViewModel cancel = new ProductViewModel();
     cancel.Cancel_Product();
     AddProduct _AP = new AddProduct();
     _AP.ShowDialog();
 }
Exemplo n.º 5
0
 private void CustomerListing_Click(object sender, RoutedEventArgs e)
 {
     ProductViewModel cancel = new ProductViewModel();
     cancel.Cancel_Product();
     CustomerList _CL = new CustomerList();
     _CL.ShowDialog();
 }