Esempio n. 1
0
 private void tipoDePuntoDeAccesoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         AccessPointTypeForm frmAccessPointType = new AccessPointTypeForm();
         frmAccessPointType.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
Esempio n. 2
0
 public AccessPointTypeFormController(AccessPointTypeForm instance)
 {
     this.frmAccessPointType = instance;
     this.srvAccessPointType = SamsaraAppContext.Resolve <IAccessPointTypeService>();
     this.InitializeFormControls();
 }