import { Injectable } from '@angular/core'; import { Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; import { AppSettings } from '../app.settings'; import { ActivatedRoute } from '@angular/router'; import { CbmsService } from '../cbms.services'; //import { environment } from '../environments/environment'; @Injectable({ providedIn: 'root' }) export class AuthenticationService { IsAuthenticate: boolean; userInfoId: any; xid: any; uid: string; constructor(private cbmsService: CbmsService, private queryStringRouter: ActivatedRoute) { } }