Exemple #1
0
 public AccountController(
     ICommandBus commandBus,
     IMembershipQueryService membershipQueryService,
     ICookieQueryService cookieQueryService)
 {
     _commandBus             = commandBus;
     _membershipQueryService = membershipQueryService;
     _cookieQueryService     = cookieQueryService;
 }
Exemple #2
0
 public BasketController(
     ICommandBus commandBus,
     IBasketQueryService basketQueryService,
     IUnauthorizedBasketQueryService unauthorizedBasketQueryService,
     ICookieQueryService cookieQueryService)
 {
     _commandBus                     = commandBus;
     _basketQueryService             = basketQueryService;
     _cookieQueryService             = cookieQueryService;
     _unauthorizedBasketQueryService = unauthorizedBasketQueryService;
 }