1// shared.service.ts
2
3
4import { Injectable } from '@angular/core';
5
6@Injectable()
7
8export class SharedService {
9
10 public count =0;
11
12setCount(countValue:number){
13 this.count+= countValue;
14}
15getCount():number{
16 return this.count;
17}
18
19}