Skip to content

Instantly share code, notes, and snippets.

@Qarun-Qadir-Bissoondial
Last active April 19, 2020 21:38
Show Gist options
  • Save Qarun-Qadir-Bissoondial/fb8a3d6652fd92117985e83a6139c14e to your computer and use it in GitHub Desktop.
Save Qarun-Qadir-Bissoondial/fb8a3d6652fd92117985e83a6139c14e to your computer and use it in GitHub Desktop.
Inventory Service - Placeholder stuff
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class InventoryService {
inventoryCount: number = 0;
constructor() { }
incrementCount() {}
decrementCount() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment