Example #1
0
  @Override
  public ArrayList<DepartDto> DepartListAll() throws Exception {

    return MainDao.DepartListAll();
  }
Example #2
0
  @Override
  public ArrayList<BoardMainDto> BoardListAll() throws Exception {

    return MainDao.BoardListAll();
  }
Example #3
0
  @Override
  public ArrayList<CodeManageDto> CodeManageBCodeGroupSelectAll() throws Exception {

    return MainDao.CodeManageBCodeGroupSelectAll();
  }
Example #4
0
  @Override
  public ArrayList<UserDto> UserListAll(String strCode, int intKind) throws Exception {

    return MainDao.UserListAll(strCode, intKind);
  }
Example #5
0
  @Override
  public ArrayList<UserDto> MainMessageList(String Code) throws Exception {

    return MainDao.MainMessageList(Code);
  }
Example #6
0
  @Override
  public void LogCheck(LogHistoryDto LogHistoryDto) throws Exception {

    MainDao.LogCheck(LogHistoryDto);
  }
Example #7
0
  @Override
  public ArrayList<CodeManageDto> CodeManageSelectBS(CodeManageDto CodeManageIn) throws Exception {

    return MainDao.CodeManageSelectBS(CodeManageIn);
  }
Example #8
0
  @Override
  public ArrayList<CodeManageDto> CodeManageSelectBCode(String BCode) throws Exception {

    return MainDao.CodeManageSelectBCode(BCode);
  }
Example #9
0
  @Override
  public ArrayList<MenuDto> MenuSelectAll() throws Exception {

    return MainDao.MenuSelectAll();
  }
Example #10
0
  @Override
  public UserImageDto UserImageSelect(String strCode) throws Exception {

    return MainDao.UserImageSelect(strCode);
  }
Example #11
0
  @Override
  public UserMainDto LogIn(UserMainDto userMainDto) throws Exception {

    return MainDao.LogIn(userMainDto);
  }