Exemplo n.º 1
0
 public WishlistsController(
     IWishlistsService wishlists,
     ICurrentUserService currentUser)
 {
     this.wishlists   = wishlists;
     this.currentUser = currentUser;
 }
Exemplo n.º 2
0
 public WishlistsController(IWishlistsService service)
 {
     _service = service;
 }