Beispiel #1
0
        /// <summary>
        /// Clear authority
        /// </summary>
        /// <remarks>
        /// Author:			Nguyen Quy Vinh Loc. FPTSS.
        /// Created date:	9/04/2008
        /// </remarks>
        public int ChangeCustCode(string oldcustcode, string newcustcode)
        {
            int intResult;
            clsAutUserDAO changeCC;
            try
            {
                changeCC = new clsAutUserDAO();
                DataTable dt = changeCC.ChangeCustCode(oldcustcode, newcustcode, out intResult);

                return intResult;
            }
            catch(Exception ex)
            {
                log.Error(ex.ToString());
                throw new Exception("clsAutUserBO.ChangeCustCode error");
            }
        }