Example #1
0
 public static List<NavbarEntity> GetUserNameForRoles(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetUserNameForRoles(filter);
     return lstEntity;
 }
Example #2
0
 public static List<NavbarEntity> GetMenuNameAndMenuIDForDropDownList(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetMenuNameAndMenuIDForDropDownList(filter);
     return lstEntity;
 }
Example #3
0
 public static List<NavbarEntity> GetUsernameForDropDownList(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetUsernameForDropDownList(filter);
     return lstEntity;
 }
Example #4
0
 public static List<NavbarEntity> GetNavbarListForAdminuser(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetNavbarListForAdminuser(filter);
     return lstEntity;
 }