Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(
componentFactoryResolver: ComponentFactoryResolver,
viewContainerRef: ViewContainerRef,
// tslint:disable-next-line:no-forward-ref
@Inject(forwardRef(() => DtTabBody)) private _host: DtTabBody,
) {
super(componentFactoryResolver, viewContainerRef);
}
constructor(
@Inject(HttpClient) protected http: HttpClient,
@Inject(SocketConnection) protected connection: SocketConnection,
@Inject(SDKModels) protected models: SDKModels,
@Inject(LoopBackAuth) protected auth: LoopBackAuth,
@Optional() @Inject(ErrorHandler) protected errorHandler: ErrorHandler
) {
super(http, connection, models, auth, errorHandler);
}
constructor(
private toggleService: ClrPopoverToggleService,
private el: ElementRef,
public commonStrings: ClrCommonStringsService,
private signpostIdService: SignpostIdService,
private signpostFocusManager: SignpostFocusManager,
@Inject(DOCUMENT) document: any,
@Inject(PLATFORM_ID) private platformId: Object
) {
this.document = document;
}
constructor(
@Inject(ConstantToken) private constant: Constant,
private navParams: NavParams,
private mixpanel: MixpanelService,
private sanitizer: DomSanitizer,
private popoverCtrl: PopoverController,
private youtube: YoutubeVideoPlayer,
private storyService: StoryService,
private patientService: PatientService,
private navCtrl: NavController,
private viewCtrl: ViewController,
public toastCtrl: ToastController
) {}
constructor(protected changeDetectorRef: ChangeDetectorRef,
protected collectionDataService: CollectionDataService,
protected formBuilderService: FormBuilderService,
protected formOperationsService: SectionFormOperationsService,
protected formService: FormService,
protected operationsBuilder: JsonPatchOperationsBuilder,
protected sectionService: SectionsService,
protected submissionService: SubmissionService,
@Inject('collectionIdProvider') public injectedCollectionId: string,
@Inject('sectionDataProvider') public injectedSectionData: SectionDataObject,
@Inject('submissionIdProvider') public injectedSubmissionId: string) {
super(injectedCollectionId, injectedSectionData, injectedSubmissionId);
}
constructor(
private socketService: SocketService,
private apiService: ApiService,
private timeService: TimeService,
private authService: AuthService,
private route: ActivatedRoute,
private ngZone: NgZone,
private router: Router,
@Inject(DOCUMENT) private document: any,
private titleService: Title
) {
this.loading = true;
this.status = 'queued';
this.currentTime = new Date().getTime();
}
constructor(
private oidcSecurityService: OidcSecurityService,
private http: HttpClient,
private router: Router,
@Inject('BASE_URL') private originUrl: string,
@Inject('AUTH_URL') private authUrl: string,
) {
}
constructor(@Inject(AuthService) public authService: OidcAuthService) {
}
constructor(protected searchService: SearchService,
protected filterService: SearchFilterService,
protected router: Router,
protected rdbs: RemoteDataBuildService,
@Inject(SEARCH_CONFIG_SERVICE) public searchConfigService: SearchConfigurationService,
@Inject(IN_PLACE_SEARCH) public inPlaceSearch: boolean,
@Inject(FILTER_CONFIG) public filterConfig: SearchFilterConfig,
@Inject(PLATFORM_ID) private platformId: any,
private route: RouteService) {
super(searchService, filterService, rdbs, router, searchConfigService, inPlaceSearch, filterConfig);
}