///根据开始时间、结束时间获取审核通过的会议室申请信息 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()); } } }
// 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); } } }
///根据开始时间、结束时间获取审核通过的会议室申请信息 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(); } } }
// 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; } } }