Example #1
0
        //删除档案信息
        public string DeleteArchives(string[] archivesID, ref string errorMsg)
        {
            using (ArchivesManagementBll archivesBll = new ArchivesManagementBll())
            {
                string returnStr = "";

                if (!archivesBll.DeleteArchives(archivesID, ref errorMsg))
                {
                    returnStr = "删除数据失败";
                }
                return(returnStr);
            }
        }
Example #2
0
        //删除档案信息
        public string DeleteArchives(string[] archivesID, ref string errorMsg)
        {
            using (ArchivesManagementBll archivesBll = new ArchivesManagementBll())
            {
                string returnStr = "";

                if (!archivesBll.DeleteArchives(archivesID, ref errorMsg))
                {
                    returnStr = "删除数据失败";
                }
                return returnStr;
            }
        }