Пример #1
0
 public List <T_OA_MEETINGTEMPLATE> GetMeetingTypeTemplateInfoByID(string StrTemplateId)
 {
     using (MeetingTemplateManagementBll TypeTemplateBll = new MeetingTemplateManagementBll())
     {
         IQueryable <T_OA_MEETINGTEMPLATE> TypeTemplateList = TypeTemplateBll.GetMeetingTemplateListByID(StrTemplateId);
         if (TypeTemplateList == null)
         {
             return(null);
         }
         else
         {
             return(TypeTemplateList.ToList());
         }
     }
 }
Пример #2
0
 public List<T_OA_MEETINGTEMPLATE> GetMeetingTypeTemplateInfoByID(string StrTemplateId)
 {
     using (MeetingTemplateManagementBll TypeTemplateBll = new MeetingTemplateManagementBll())
     {
         IQueryable<T_OA_MEETINGTEMPLATE> TypeTemplateList = TypeTemplateBll.GetMeetingTemplateListByID(StrTemplateId);
         if (TypeTemplateList == null)
         {
             return null;
         }
         else
         {
             return TypeTemplateList.ToList();
         }
     }
 }