Esempio n. 1
0
        /// <summary>
        /// 删除归档申请,删除成功return true,否则return false——赵英武
        /// </summary>
        /// <param name="apply"></param>
        public bool DeleteApply(int apply)
        {
            CApplyEntity aRes = new CApplyEntity().Load(apply);

            if (aRes.App_Applyer == this.Usr_Id && aRes.App_Audited == (int)AUDITE.UNAUDITING)
            {
                aRes.Delete();
                return(true);
            }
            else
            {
                return(false);
            }
        }