Add a constructor
This commit is contained in:
parent
a3cbdf0956
commit
cf5201c67b
|
@ -65,6 +65,23 @@ public class TerminologyUploaderProvider extends BaseJpaProvider {
|
|||
@Autowired
|
||||
private IHapiTerminologySvc myTerminologySvc;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public TerminologyUploaderProvider() {
|
||||
this(null, null, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public TerminologyUploaderProvider(FhirContext theContext, IHapiTerminologyLoaderSvc theTerminologyLoaderSvc, IHapiTerminologySvc theTerminologySvc) {
|
||||
myCtx = theContext;
|
||||
myTerminologyLoaderSvc = theTerminologyLoaderSvc;
|
||||
myTerminologySvc = theTerminologySvc;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <code>
|
||||
* $apply-codesystem-delta-add
|
||||
|
|
Loading…
Reference in New Issue