Пример #1
0
 public CreatePlanCommandHandler(IPaymentPlanRepository planRepository, IMapper mapper,
                                 IAuthenticatedUserService authenticatedUser)
 {
     _planRepository    = planRepository;
     _mapper            = mapper;
     _authenticatedUser = authenticatedUser;
 }
Пример #2
0
 public UserPaymentPlanService(IUserRepository userRepository,
                               IPaymentPlanRepository paymentPlanRepository,
                               IUserPaymentPlanRepository userPaymentPlanRepository)
 {
     _userRepository            = userRepository;
     _paymentPlanRepository     = paymentPlanRepository;
     _userPaymentPlanRepository = userPaymentPlanRepository;
 }
Пример #3
0
 public PaymentService(IPaymentPlanRepository paymentPlanRepository)
 {
     _paymentPlanRepository = paymentPlanRepository;
 }
Пример #4
0
 public GetPlanDetailsQueryHandler(IPaymentPlanRepository paymentPlanRepository, IMapper mapper)
 {
     _paymentPlanRepository = paymentPlanRepository;
     _mapper = mapper;
 }
 public PaymentPlanBusiness(IPaymentPlanRepository paymentPlanRepository)
 {
     _paymentPlanRepository = paymentPlanRepository;
 }
Пример #6
0
 public PaymentPlanJob(IPaymentPlanRepository planRepository)
 {
     _planRepository = planRepository;
 }
Пример #7
0
 public PayoutCronJob(IPaymentPlanRepository planRepository, ITransactionRepositoryAsync transactionRepositoryAsync)
 {
     _planRepository             = planRepository;
     _transactionRepositoryAsync = transactionRepositoryAsync;
 }
Пример #8
0
 public GetAllProductsQueryHandler(IPaymentPlanRepository paymentPlanRepository, IMapper mapper)
 {
     _paymentPlanRepository = paymentPlanRepository;
     _mapper = mapper;
 }