Exemple #1
0
        public string[] GetAdviserAllCustomerForAssociations(string prefixText, int count, string contextKey)
        {
            CustomerBo customerBo     = new CustomerBo();
            DataTable  dtCustomerName = new DataTable();

            int selectedParentId = 0;
            int rmId             = 0;

            string[] splitStr = contextKey.Split('|');
            rmId             = int.Parse(splitStr[0].ToString());
            selectedParentId = int.Parse(splitStr[1].ToString());
            List <string> names = new List <string>();

            dtCustomerName = customerBo.GetAdviserAllCustomerForAssociations(prefixText, rmId, selectedParentId);


            //dtCustomerName = customerBo.GetAdviserAllCustomerForAssociations(prefixText, int.Parse(contextKey));
            foreach (DataRow dr in dtCustomerName.Rows)
            {
                string item = AjaxControlToolkit.AutoCompleteExtender.CreateAutoCompleteItem(dr["C_FirstName"].ToString(), dr["C_CustomerId"].ToString());
                names.Add(item);
            }
            return(names.ToArray());
        }