Example #1
0
 //获取已发布的文档信息
 public List <T_OA_SENDDOC> GetDistrbutedSendDocInfos(string StrTitle, string StrContent, DateTime DtStart, DateTime DtEnd, string StrGrade, string StrProritity, string StrDocType)
 {
     using (BumfCompanySendDocManagementBll SendDocBll = new BumfCompanySendDocManagementBll())
     {
         List <T_OA_SENDDOC> SendDocInfosList = SendDocBll.GetDistributedSendDocInfos(StrTitle, StrContent, DtStart, DtEnd, StrGrade, StrProritity, StrDocType);
         if (SendDocInfosList == null)
         {
             return(null);
         }
         else
         {
             return(SendDocInfosList);
         }
     }
 }
Example #2
0
        //获取已发布的文档信息
        public List<T_OA_SENDDOC> GetDistrbutedSendDocInfos(string StrTitle, string StrContent, DateTime DtStart, DateTime DtEnd, string StrGrade, string StrProritity, string StrDocType)
        {
            using (BumfCompanySendDocManagementBll SendDocBll = new BumfCompanySendDocManagementBll())
            {
                List<T_OA_SENDDOC> SendDocInfosList = SendDocBll.GetDistributedSendDocInfos(StrTitle, StrContent, DtStart, DtEnd, StrGrade, StrProritity, StrDocType);
                if (SendDocInfosList == null)
                {
                    return null;
                }
                else
                {
                    return SendDocInfosList;
                }
            }

        }