public ReceiptController()
 {
     service = IoC.Resolve<IReceiptService>("ReceiptService");
     calendarService = IoC.Resolve<ICalendarService>("CalendarService");
     sobService = IoC.Resolve<ISetOfBookService>("SetOfBookService");
     customerService = IoC.Resolve<ICustomerService>("CustomerService");
     customerSiteService = IoC.Resolve<ICustomerSiteService>("CustomerSiteService");
     bankService = IoC.Resolve<IBankService>("BankService");
     bankAccountService = IoC.Resolve<IBankAccountService>("BankAccountService");
     currencyService = IoC.Resolve<ICurrencyService>("CurrencyService");
 }
Ejemplo n.º 2
0
 public ProfitLossCalculation(IBankAccountService bankAccountService, Func <IUnitOfWork> unitOfWork)
 {
     _bankAccountService = bankAccountService;
     _unitOfWork         = unitOfWork;
 }
        public UserService(IUserRepository userRepository, ICategoryService categoryService, IBankAccountService bankAccountService, IMapper mapper, IEncrypter encrypter)
        {
            _userRepository = userRepository;

            _categoryService    = categoryService;
            _bankAccountService = bankAccountService;

            _mapper    = mapper;
            _encrypter = encrypter;
        }
 public IncomeController(IIncomeService incomeService, IBankAccountService bankAccountService) : base(bankAccountService)
 {
     this._incomeService = incomeService;
 }
 public BankAccountController(IBankAccountService BankAccountService)
 {
     _BankAccountService = BankAccountService;
 }
Ejemplo n.º 6
0
 private void Load()
 {
     CleanUp();
     _bankAccountService = new BankAccountService();
     GetBankAccounts();
 }
Ejemplo n.º 7
0
 public HgsController(ICustomerService customerService, IBankAccountService bankAccountService)
 {
     this.customerService    = customerService;
     this.bankAccountService = bankAccountService;
 }
Ejemplo n.º 8
0
 public BaseController(IBankAccountService bankAccountService)
 {
     this._bankAccountService = bankAccountService;
 }
 public CountryController(ICountryService countryService, IBankAccountService bankAccountService) : base(bankAccountService)
 {
     this._countryService = countryService;
 }
Ejemplo n.º 10
0
 public void LoadContext()
 {
     _mockBankAccountRepository = new Mock <IBankAccountRepository>();
     _bankAccountService        = new BankAccountService(_mockBankAccountRepository.Object);
 }
Ejemplo n.º 11
0
 public SetCustomerBankAccountCommand(ICustomerService customerService, IBankAccountService bankAccountService)
 {
     this._customerService    = customerService;
     this._bankAccountService = bankAccountService;
 }
Ejemplo n.º 12
0
 public BankAccountController(IBankAccountService bankAccountService, IBankAccountTypeService bankAccountTypeService)
 {
     _bankAccountService     = bankAccountService;
     _bankAccountTypeService = bankAccountTypeService;
 }
 public BankAccountController(IBankAccountService bankAccountService, IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
 {
     this.bankAccountService = bankAccountService;
 }
Ejemplo n.º 14
0
 protected BaseMoneyTransferController(IBankAccountService bankAccountService)
 {
     this.bankAccountService = bankAccountService;
 }
 public AddBankAccountCommand(IBankAccountService bankAccountService)
 {
     this._bankAccountService = bankAccountService;
 }
Ejemplo n.º 16
0
 public SavingController(ISavingService savingService, IBankAccountService bankAccountService) : base(bankAccountService)
 {
     this._savingService      = savingService;
     this._bankAccountService = bankAccountService;
 }
Ejemplo n.º 17
0
        public void Setup()
        {
            _repository = new Mock<IBankAccountRepository>();

               _sut = new BankAccountService(_repository.Object);
        }
Ejemplo n.º 18
0
 public BankAccountController(IMapper mapper, IBankAccountService bankAccountService)
 {
     _mapper             = mapper;
     _bankAccountService = bankAccountService;
 }
Ejemplo n.º 19
0
 public BankAccountServiceATest()
 {
     _mockLogger         = new Mock <ILogger <BankAccountServiceA> >();
     _bankAccountService = new BankAccountServiceA(_mockLogger.Object);
 }
Ejemplo n.º 20
0
 public HomeController(IExpenditureService expenditureService, IPaymentMethodService paymentMethodService, IBankAccountService bankAccountService,
                       IUserProfileService userProfileService, ICurrencyService currencyService) : base(bankAccountService)
 {
     this._expenditureService   = expenditureService;
     this._paymentMethodService = paymentMethodService;
     this._bankAccountService   = bankAccountService;
     this._userProfileService   = userProfileService;
     this._currencyService      = currencyService;
 }
Ejemplo n.º 21
0
 public GetBankAccountsCommand(AddEntryViewModel addBookingViewModel, IBankAccountService bankAccountService)
 {
     this.addBookingViewModel = addBookingViewModel;
     this.bankAccountService  = bankAccountService;
 }
Ejemplo n.º 22
0
 public BankAccountController(IBankAccountRepository bARepository, IBankAccountService bankAccountService)
 {
     _bankAccountService = bankAccountService;
     _baRepository       = bARepository;
 }
Ejemplo n.º 23
0
 public PaymentService(DAISInterviewTaskDbContext context, IBankAccountService bankAccountService, UserManager <User> userManager)
 {
     this.context            = context;
     this.bankAccountService = bankAccountService;
     this.userManager        = userManager;
 }
Ejemplo n.º 24
0
 public BankAccountApp(IBankAccountService bankAccount) : base(bankAccount)
 {
     _bankAccountService = bankAccount;
 }
Ejemplo n.º 25
0
 public AccountController(IBankAccountService bankAccountService)
 {
     this.bankAccountService = bankAccountService;
 }
Ejemplo n.º 26
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public BankAccountController()
 {
     BankAccountService = base.GetObject <IBankAccountService>("GQT3.QT.Service.BankAccount");
 }
Ejemplo n.º 27
0
 protected BaseMoneyTransferController(IBankAccountService bankAccountService, IMapper mapper)
 {
     this.bankAccountService = bankAccountService;
     this.Mapper             = mapper;
 }
Ejemplo n.º 28
0
 public Transfer(IBankAccountService bankAccountService)
 {
     _bankAccountService = bankAccountService;
 }
Ejemplo n.º 29
0
 public LoanService(IEntityRepository <Loan> loanRepository, IEntityRepository <BankAccount> bankAccountRepository, IEntityRepository <LoanInstallment> loanInstallmentRepository, IBankAccountService bankAccountService)
 {
     _loanRepository            = loanRepository;
     _bankAccountRepository     = bankAccountRepository;
     _loanInstallmentRepository = loanInstallmentRepository;
     _bankAccountService        = bankAccountService;
 }
Ejemplo n.º 30
0
 public Deposit(IBankAccountService bankAccountService)
 {
     _bankAccountService = bankAccountService;
 }
 public BankAccountOrchestra(IBankAccountService bankAccountService, ICustomerBankAccountService customerBankAccountService)
 {
     _bankAccountService         = bankAccountService;
     _customerBankAccountService = customerBankAccountService;
 }
 public BackofficeController(IMapper mapper, IBankAccountService bankAccountService, IClientService clientService)
 {
     _mapper             = mapper;
     _bankAccountService = bankAccountService;
     _clientService      = clientService;
 }
Ejemplo n.º 33
0
 static BankHelper()
 {
     service = IoC.Resolve<IBankService>("BankService");
     bankAccountService = IoC.Resolve<IBankAccountService>("BankAccountService");
 }
Ejemplo n.º 34
0
 public BankAccountsController(IBankAccountService bankAccountService)
 {
     _bankAccountService = bankAccountService;
 }
Ejemplo n.º 35
0
 public BankAccountHandler(IBankAccountService bankAccountService)
 {
     _bankAccountService = bankAccountService;
 }
Ejemplo n.º 36
0
 public BankAccountController(IBankAccountService bankAccountService, UserManager <ApplicationUser> userManager) : base(userManager)
 {
     this._bankAccountService = bankAccountService;
 }