Esempio n. 1
0
 public CheckoutController(
     UserManager <User> userManager,
     IPaymentCommonService paymentCommonService)
 {
     this.userManager          = userManager;
     this.paymentCommonService = paymentCommonService;
 }
 public ProfileController(
     UserManager <User> userManager,
     IPaymentCommonService paymentService,
     IRentalService rentalService)
 {
     this.userManager    = userManager;
     this.paymentService = paymentService;
     this.rentalService  = rentalService;
 }
 public DashboardController(
     UserManager <User> userManager,
     IListingService listingService,
     IPaymentCommonService paymentService)
 {
     this.userManager    = userManager;
     this.listingService = listingService;
     this.paymentService = paymentService;
 }
 public PaymentsController(
     ApplicationDbContext context,
     UserManager <User> userManager,
     IOwnerPaymentService paymentService,
     IPaymentCommonService paymentCommonService)
 {
     this.context              = context;
     this.userManager          = userManager;
     this.paymentService       = paymentService;
     this.paymentCommonService = paymentCommonService;
 }
Esempio n. 5
0
 public TransactionRequestsController(
     ApplicationDbContext context,
     UserManager <User> userManager,
     IOwnerRentalService rentalService,
     IOwnerListingService listingService,
     IOwnerTransactionRequestService transactionRequestService,
     IPaymentCommonService paymentService)
 {
     this.context                   = context;
     this.userManager               = userManager;
     this.rentalService             = rentalService;
     this.listingService            = listingService;
     this.transactionRequestService = transactionRequestService;
     this.paymentService            = paymentService;
 }
Esempio n. 6
0
 public StripeEventsController(IPaymentCommonService paymentCommonService)
 {
     this.paymentCommonService = paymentCommonService;
 }