Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. @Component({
  2. providers: [ProductService]
  3. })
  4. class ProductComponent {
  5. product: Product;
  6.  
  7. constructor(private productService: ProductService) {
  8.  
  9. this.product = this.productService.getProduct();
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement