Ejemplo n.º 1
0
 public ShopperCommandHandler(IUnitOfWork uow, IDomainNotification notifications, IUserRepository userRepository,
                              IPasswordHasherService passwordHasherService, IShopperRepository shopperRepository,
                              IShopperAddressRepository shopperAddressRepository) : base(uow,
                                                                                         notifications)
 {
     _userRepository           = userRepository;
     _passwordHasherService    = passwordHasherService;
     _shopperRepository        = shopperRepository;
     _shopperAddressRepository = shopperAddressRepository;
 }
 public ShopperAddressQueryHandler(IDomainNotification notifications,
                                   IShopperAddressRepository shopperAddressRepository) : base(notifications)
 {
     _shopperAddressRepository = shopperAddressRepository;
 }
 public ShopperAddressCommandHandler(IUnitOfWork uow, IShopperAddressRepository shopperAddressRepository,
                                     IDomainNotification notifications) : base(uow, notifications)
 {
     _shopperAddressRepository = shopperAddressRepository;
 }