Example #1
0
 public List<T_SYS_USER> GetManagers(List<string> companyIDs)
 {
     using (SysPermissionBLL bll = new SysPermissionBLL())
     {
         List<T_SYS_USER> listUsers = new List<T_SYS_USER>();
         try
         {
             listUsers = bll.GetManagers(companyIDs);
         }
         catch (Exception ex)
         {
             Tracer.Debug("PermissionService-GetFlowManagers获取管理员集合出错:" + ex.ToString());
         }
         return listUsers;
     }
 }