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

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