Example #1
0
 private void marcaDeCCTVToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         CCTVBrandForm frmCCTVBrand = new CCTVBrandForm();
         frmCCTVBrand.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
Example #2
0
 public CCTVBrandFormController(CCTVBrandForm instance)
 {
     this.frmCCTVBrand = instance;
     this.srvCCTVBrand = SamsaraAppContext.Resolve <ICCTVBrandService>();
     this.InitializeFormControls();
 }