import { Injectable } from '@angular/core'; import { Observable, Subject} from 'rxjs'; @Injectable({ providedIn: 'root' }) export class CbmsSharedService { public userInfoId = new Subject(); public userInfoId$ = this.userInfoId.asObservable(); constructor() { } setUserInfoId(data: any) { this.userInfoId.next(data) } }