示例#1
0
        /// <summary>
        /// This Method is used to Select data
        /// </summary>
        /// <param name="objCountry">Action</param>
        /// <returns>1 for success and -1 for fail</returns>
        public string RecordSelect(PropCountry objCountry)
        {
            Dllcountry objDal = new Dllcountry();

            try
            {
                return(objDal.Selectcountry(objCountry));
            }
            catch (Exception info)
            {
                throw info;
            }
            finally
            {
                objDal = null;
            }
        }