예제 #1
0
파일: DAFacade.cs 프로젝트: moinulmithu/HRM
 public static List<NavbarEntity> GetUserNameForRoles(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetUserNameForRoles(filter);
     return lstEntity;
 }
예제 #2
0
파일: DAFacade.cs 프로젝트: moinulmithu/HRM
 public static List<NavbarEntity> GetMenuNameAndMenuIDForDropDownList(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetMenuNameAndMenuIDForDropDownList(filter);
     return lstEntity;
 }
예제 #3
0
파일: DAFacade.cs 프로젝트: moinulmithu/HRM
 public static List<NavbarEntity> GetUsernameForDropDownList(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetUsernameForDropDownList(filter);
     return lstEntity;
 }
예제 #4
0
파일: DAFacade.cs 프로젝트: moinulmithu/HRM
 public static List<NavbarEntity> GetNavbarListForAdminuser(string filter)
 {
     List<NavbarEntity> lstEntity = new DANavbar().GetNavbarListForAdminuser(filter);
     return lstEntity;
 }