book.service.ts import { Injectable } from '@angular/core'; import { Observable, of } from 'rxjs'; import { Product } from '../Models/book.model'; @Injectable({ providedIn: 'root' }) export class ProductService { private products: Product[] = [ ...