Beispiel #1
0
 private void tiposDeSoftwareDeSeguridadToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         SecuritySoftwareTypeForm frmSecuritySoftwareType = new SecuritySoftwareTypeForm();
         frmSecuritySoftwareType.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
 public SecuritySoftwareTypeFormController(SecuritySoftwareTypeForm instance)
 {
     this.frmSecuritySoftwareType = instance;
     this.srvSecuritySoftwareType = SamsaraAppContext.Resolve <ISecuritySoftwareTypeService>();
     this.InitializeFormControls();
 }