Example #1
0
 public List<T_SYS_ENTITYMENUCUSTOMPERM> GetEntityMenuCustomPermByType(string systemType)
 {
     using (EntityMenuCustomPermBLL bll = new EntityMenuCustomPermBLL())
     {
         IQueryable<T_SYS_ENTITYMENUCUSTOMPERM> menuList = bll.GetEntityMenuCustomPermByType(systemType);
         return menuList.Count() > 0 ? menuList.ToList() : null;
     }
 }