Ejemplo n.º 1
0
 public CommentController(ICommentViewModelService commentService, ICurrentUser currentUser, IBookViewModelService bookManager)
 {
     _currentUser    = currentUser;
     _commentService = commentService;
     _bookManager    = bookManager;
 }
Ejemplo n.º 2
0
 public OrderController(IOrderViewModelService orderService, IBookViewModelService bookService)
 {
     _orderService = orderService;
     _bookService  = bookService;
 }