Created
October 12, 2017 07:36
-
-
Save tkssharma/8bfec128ba22ed5ea0c7ba0eca18001f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class shoppingCartItem { | |
@Input()product : product; | |
constructor(private _cartService : cartService) {} | |
AddProduct(_product : product) { | |
_product.added = true; | |
this | |
._cartService | |
.addProduct(_product); | |
} | |
RemoveProduct(_product : product) { | |
_product.added = false; | |
this | |
._cartService | |
.removeProduct(_product.id); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment