You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
458 B
TypeScript
18 lines
458 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { AuthenticationService } from "src/app/hmg-common/services/authentication/authentication.service";
|
|
import { ConnectorService } from "src/app/hmg-common/services/connector/connector.service";
|
|
import { Observable } from 'rxjs';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class DashboredService {
|
|
|
|
constructor(
|
|
public api: ConnectorService,
|
|
public authService: AuthenticationService,
|
|
) { }
|
|
|
|
|
|
}
|