Beispiel #1
0
 private void marcasDeProductosToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         ProductBrandForm frmProductBrand = new ProductBrandForm();
         frmProductBrand.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
 public ProductBrandFormController(ProductBrandForm instance)
 {
     this.frmProductBrand = instance;
     this.srvProductBrand = SamsaraAppContext.Resolve <IProductBrandService>();
     this.InitializeFormControls();
 }
Beispiel #3
0
 private void productBrandsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     ProductBrandForm.Show(this);
 }