Пример #1
0
 ///根据开始时间、结束时间获取审核通过的会议室申请信息
 public List <T_OA_MEETINGROOMAPP> GetMeetingRoomAppBySelectRooms(DateTime start, DateTime end, string StrCheckState)
 {
     using (MeetingRoomAppManagementBll RoomAppBll = new MeetingRoomAppManagementBll())
     {
         IQueryable <T_OA_MEETINGROOMAPP> MeetingInfosList = RoomAppBll.GetMeetingRoomAppInfos(start, end, StrCheckState);
         if (MeetingInfosList == null)
         {
             return(null);
         }
         else
         {
             return(MeetingInfosList.ToList());
         }
     }
 }
Пример #2
0
 // 2010-3-23 添加审核状态
 public List <T_OA_MEETINGROOMAPP> GetMeetingRoomAppInfos(string StrCheckState)
 {
     using (MeetingRoomAppManagementBll RoomAppBll = new MeetingRoomAppManagementBll())
     {
         List <T_OA_MEETINGROOMAPP> MeetingInfosList = RoomAppBll.GetMeetingRoomAppInfos(StrCheckState);
         if (MeetingInfosList == null)
         {
             return(null);
         }
         else
         {
             return(MeetingInfosList);
         }
     }
 }
Пример #3
0
 ///根据开始时间、结束时间获取审核通过的会议室申请信息
 public List<T_OA_MEETINGROOMAPP> GetMeetingRoomAppBySelectRooms(DateTime start, DateTime end, string StrCheckState)
 {
     using (MeetingRoomAppManagementBll RoomAppBll = new MeetingRoomAppManagementBll())
     {
         IQueryable<T_OA_MEETINGROOMAPP> MeetingInfosList = RoomAppBll.GetMeetingRoomAppInfos(start,end,StrCheckState);
         if (MeetingInfosList == null)
         {
             return null;
         }
         else
         {
             return MeetingInfosList.ToList();
         }
     }
 }
Пример #4
0
 // 2010-3-23 添加审核状态
 public List<T_OA_MEETINGROOMAPP> GetMeetingRoomAppInfos(string StrCheckState)
 {
     using (MeetingRoomAppManagementBll RoomAppBll = new MeetingRoomAppManagementBll())
     {
         List<T_OA_MEETINGROOMAPP> MeetingInfosList = RoomAppBll.GetMeetingRoomAppInfos(StrCheckState);
         if (MeetingInfosList == null)
         {
             return null;
         }
         else
         {
             return MeetingInfosList;
         }
     }
 }