private void tipoDeCCTVToolStripMenuItem_Click(object sender, EventArgs e) { try { this.Cursor = Cursors.WaitCursor; CCTVTypeForm frmCCTVType = new CCTVTypeForm(); frmCCTVType.Show(); } finally { this.Cursor = Cursors.Default; } }
public CCTVTypeFormController(CCTVTypeForm instance) { this.frmCCTVType = instance; this.srvCCTVType = SamsaraAppContext.Resolve <ICCTVTypeService>(); this.InitializeFormControls(); }