package incheon.res.rdm.oe.intusr.service;

import incheon.res.rdm.oe.intusr.vo.RmtUserDtVO;

import java.util.List;


public interface RmtUserDtService {

	int requestUser(RmtUserDtVO vo) throws Exception;

	int approveRequsr(RmtUserDtVO vo) throws Exception;

	int rejectRequsr(RmtUserDtVO vo) throws Exception;

	int rejectUsrBatch(RmtUserDtVO vo) throws Exception;

	void insertMngRmtUser(RmtUserDtVO vo) throws Exception;

}
