Esempio n. 1
0
 private void tiposDeSistemasOperativosToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         OperativeSystemTypeForm frmOperativeSystemType = new OperativeSystemTypeForm();
         frmOperativeSystemType.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
Esempio n. 2
0
 public OperativeSystemTypeFormController(OperativeSystemTypeForm instance)
 {
     this.frmOperativeSystemType = instance;
     this.srvOperativeSystemType = SamsaraAppContext.Resolve <IOperativeSystemTypeService>();
     this.InitializeFormControls();
 }