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