예제 #1
0
 private void marcaDePuntoDeAccesoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         AccessPointBrandForm frmAccessPointBrand = new AccessPointBrandForm();
         frmAccessPointBrand.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
 public AccessPointBrandFormController(AccessPointBrandForm instance)
 {
     this.frmAccessPointBrand = instance;
     this.srvAccessPointBrand = SamsaraAppContext.Resolve <IAccessPointBrandService>();
     this.InitializeFormControls();
 }