This commit is contained in:
ivanov.denis 2024-07-23 18:35:54 +03:00
parent c7c7f4b9d7
commit f60e0fd9e4

View file

@ -12,13 +12,14 @@ import ru.cg.webbpm.modules.webkit.beans.Behavior;
*/
@RpcService
public class ErvuFileUploadRpcService extends Behavior {
public class ErvuFileUploadRpcService extends Behavior {
private final EmployeeInfoFileUploadService service;
private EmployeeInfoFileUploadService service;
@Autowired
public ErvuFileUploadRpcService(EmployeeInfoFileUploadService service) {
this.service = service;
@Override
protected void start() {
super.start();
this.service = this.getScript(EmployeeInfoFileUploadService.class);
}
@RpcCall