12 lines
294 B
Java
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();
|
|
}
|
|
}
|