first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package wenrgise.hrms.ejb.facade;
import javax.ejb.SessionBean;
import javax.ejb.SessionContext;
import wenrgise.common.exception.EnrgiseApplicationException;
import wenrgise.common.exception.EnrgiseSystemException;
import wenrgise.common.vo.LovQueryVO;
import wenrgise.common.vo.LovVO;
import wenrgise.hrms.ejb.business.HrmReportBO;
public class HrmReportFacadeBean implements SessionBean {
public void ejbCreate() {}
public void ejbActivate() {}
public void ejbPassivate() {}
public void ejbRemove() {}
public void setSessionContext(SessionContext ctx) {}
public LovVO getYYMMReportLOVData(LovQueryVO oLovQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException {
HrmReportBO oHrmReportBO = new HrmReportBO();
LovVO oLovVO = oHrmReportBO.getYYMMReportLOVData(oLovQueryVO);
return oLovVO;
}
public LovVO getDesigIdReportLOVData(LovQueryVO oLovQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException {
HrmReportBO oHrmReportBO = new HrmReportBO();
LovVO oLovVO = oHrmReportBO.getDesigIdReportLOVData(oLovQueryVO);
return oLovVO;
}
}