public PaymentsController(
     ApplicationDbContext context,
     UserManager <User> userManager,
     IOwnerPaymentService paymentService,
     IPaymentCommonService paymentCommonService)
 {
     this.context              = context;
     this.userManager          = userManager;
     this.paymentService       = paymentService;
     this.paymentCommonService = paymentCommonService;
 }
 public DashboardController(
     IOwnerListingService listingService,
     IOwnerRequestService requestService,
     IOwnerRentalService rentalService,
     IOwnerPaymentService paymentService,
     IOwnerTransactionRequestService transactionRequestService,
     UserManager <User> userManager)
 {
     this.listingService            = listingService;
     this.requestService            = requestService;
     this.rentalService             = rentalService;
     this.paymentService            = paymentService;
     this.transactionRequestService = transactionRequestService;
     this.userManager = userManager;
 }