public CreateMerchantProductCommandHandler(IProductRepository productRepository, IMerchantProductRepository merchantProductRepository,
                                            IMerchantAddressRepository merchantAddressRepository)
 {
     _productRepository         = productRepository;
     _merchantProductRepository = merchantProductRepository;
     _merchantAddressRepository = merchantAddressRepository;
 }
Example #2
0
 public GetMerchantProductQueryHandler(IMerchantProductRepository merchantProductRepository)
 {
     _merchantProductRepository = merchantProductRepository;
 }
Example #3
0
 public UpdateStockMerchantProductCommandHandler(IMerchantProductRepository merchantProductRepository)
 {
     _merchantProductRepository = merchantProductRepository;
 }
 public DeleteMerchantProductCommandHandler(IMerchantProductRepository merchantProductRepository)
 {
     _merchantProductRepository = merchantProductRepository;
 }