Files
HRMS/hrmsEjb/wenrgise/hrms/service/HrmsServiceFactory.java
2025-07-28 13:56:49 +05:30

12 lines
294 B
Java

package wenrgise.hrms.service;
import wenrgise.workflow.helper.HrmsSimulator;
public class HrmsServiceFactory {
private static HrmsServiceFactory hrmsServiceFactory = new HrmsServiceFactory();
public static HrmsService getService() {
return (HrmsService)new HrmsSimulator();
}
}