Exemplo n.º 1
0
 private void marcaDeConmutadorToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         CommutatorBrandForm frmCommutatorBrand = new CommutatorBrandForm();
         frmCommutatorBrand.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
 public CommutatorBrandFormController(CommutatorBrandForm instance)
 {
     this.frmCommutatorBrand = instance;
     this.srvCommutatorBrand = SamsaraAppContext.Resolve <ICommutatorBrandService>();
     this.InitializeFormControls();
 }