예제 #1
0
 public CheckoutController(ICart cartService,
                           ICartViewModel cartViewModelService,
                           IOrderServ orderService)
 {
     _cartService          = cartService;
     _orderService         = orderService;
     _cartViewModelService = cartViewModelService;
 }
 public AccountController(IAccountServ accountServ, IOrderServ orderServ, IMailer mailer) : base(accountServ)
 {
     this.accountServ = accountServ;
     this.orderServ   = orderServ;
     this.mailer      = mailer;
 }