Exemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TaxReturnRepository"/> class.
        /// </summary>
        public TaxReturnRepository()
        {
            taxReturnDataService = new TaxReturnDataService();
            messageRepository    = new MessagesRepository();

            paymentDataService = new PaymentDataService();
        }
 public PaymentsController(IPaymentDataService paymentDataService,
                           IAccountDataService accountDataService,
                           ICategoryDataService categoryDataService,
                           UserManager <AppUser> userManager)
 {
     this.paymentDataService  = paymentDataService;
     this.accountDataService  = accountDataService;
     this.categoryDataService = categoryDataService;
     this.userManager         = userManager;
 }
Exemplo n.º 3
0
 public PaymentService(IPaymentDataService paymentDataService, IDbTransactionService dbTransactionService)
 {
     _paymentDataService   = paymentDataService;
     _dbTransactionService = dbTransactionService;
 }
Exemplo n.º 4
0
 public PaymentService(IPaymentDataService paymentDataService)
 {
     this.paymentDataService = paymentDataService;
 }
Exemplo n.º 5
0
 public PaymentService(IPaymentDataService paymentDataService, IMapper mapper)
 {
     this.paymentDataService = paymentDataService;
     this.mapper             = mapper;
 }