You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
647 B
Java

package com.docus.bgts.facade;
import javax.xml.rpc.ServiceException;
import java.io.UnsupportedEncodingException;
import java.rmi.RemoteException;
public interface IBgtsService {
/**
*
* @param empId
*/
void collect(String empId, String collectSubId) throws Exception;
/**
*
* @param emamNo
* @param empId
* @throws UnsupportedEncodingException
* @throws RemoteException
* @throws ServiceException
*/
void collectByExamNo(String emamNo, String empId, String collectSubId) throws UnsupportedEncodingException, RemoteException, ServiceException, Exception;
}