import { ApiService } from './api.service'; import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class NotificationService { constructor(private api: ApiService) { } async getNotifications() { return this.api.get(`notification/get`); } async getNotificationsCount() { return this.api.get(`notification/count`); } }