示例#1
0
        /*--------------------------------------------------------------------------USER REGISTRATION---------------------------------*/

        public List <country> getCountry()
        {
            List <country> objCountry = new List <country>();

            try
            {
                objCountry = objUserInfoDAL.getCountry();
            }
            catch (Exception ex)
            {
                CubitExceptionUtility.CubitExceptionLog(ex.Message + "BAL: Error while calling list of country in to the UserInfoDAL" + ex.StackTrace + " " + ex.InnerException, this.GetType().BaseType.Name.ToString(), DateTime.Now.ToLongTimeString(), DateTime.Now.ToLongDateString());
            }
            return(objCountry);
        }