private void btnPeirscope_Click(object sender, EventArgs e)
        {
            frmStandardLookupEditor _frmStandardLookup = new frmStandardLookupEditor();

            _frmStandardLookup.LookupType = Costants.PeriScopeStatus;
            _frmStandardLookup.ShowDialog();
        }
        private void btnProjectLeads_Click(object sender, EventArgs e)
        {
            frmStandardLookupEditor _frmStandardLookup = new frmStandardLookupEditor();

            _frmStandardLookup.LookupType = Costants.ProjectManagersList;
            _frmStandardLookup.ShowDialog();
        }
        private void btnDataMigration_Click(object sender, EventArgs e)
        {
            frmStandardLookupEditor _frmStandardLookup = new frmStandardLookupEditor();

            _frmStandardLookup.LookupType = Costants.DataMigrationList;
            _frmStandardLookup.ShowDialog();
        }
        private void btnEditLookupsCountys_Click(object sender, EventArgs e)
        {
            frmStandardLookupEditor _frmStandardLookupEditor = new frmStandardLookupEditor();

            _frmStandardLookupEditor.LookupType = Costants.CountyList;

            _frmStandardLookupEditor.ShowDialog();
        }