private void FillParentSectorList() { string sql = "MarketSectorId NOT IN ('" + _MarketSectorId.ToString() + "')"; string[] orderBy = new string[] { "MarketSectorCode" }; MarketSectorEx.LoadCombo(ref cboParentSector, "MarketSectorCode", false, true, "", sql, orderBy); }
private void FillMarketSectorList() { var orderBy = new string[] { "MarketSectorName" }; MarketSectorEx.LoadCombo(ref cboMarketSector, "MarketSectorName", true, true, "", "", orderBy); }