Beispiel #1
0
 public List <T_OA_MEETINGINFO> GetMeetintInfosListByTitleTimeSearch(string StrTitle, string StrDepartment, string StrType, string StrContent, DateTime DtStart, DateTime DtEnd, string StrCheckState)
 {
     using (MeetingManagementBll MeetingInfoBLL = new MeetingManagementBll())
     {
         IQueryable <T_OA_MEETINGINFO> MeetingInfoList = MeetingInfoBLL.GetMeetingInfosListByTitleTimeSearch(StrTitle, StrType, StrDepartment, DtStart, DtEnd, StrContent, StrCheckState);
         if (MeetingInfoList == null)
         {
             return(null);
         }
         else
         {
             return(MeetingInfoList.ToList());
         }
     }
 }
Beispiel #2
0
 public List<T_OA_MEETINGINFO> GetMeetintInfosListByTitleTimeSearch(string StrTitle, string StrDepartment, string StrType, string StrContent, DateTime DtStart, DateTime DtEnd, string StrCheckState)
 {
     using (MeetingManagementBll MeetingInfoBLL = new MeetingManagementBll())
     {
         IQueryable<T_OA_MEETINGINFO> MeetingInfoList = MeetingInfoBLL.GetMeetingInfosListByTitleTimeSearch(StrTitle, StrType, StrDepartment, DtStart, DtEnd, StrContent, StrCheckState);
         if (MeetingInfoList == null)
         {
             return null;
         }
         else
         {
             return MeetingInfoList.ToList();
         }
     }
 }