コード例 #1
0
 public RespositoryFixture()
 {
     AccountRepo = new AccountRepository();
     LedgerRepo  = new LedgerRepository();
 }
コード例 #2
0
 public LedgerController(ILedgerRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
コード例 #3
0
 public SavingAccountTest(RespositoryFixture repofixture)
 {
     AccountRepo = repofixture.AccountRepo;
     LedgerRepo  = repofixture.LedgerRepo;
 }
コード例 #4
0
 public CurrentAccountsTest(RespositoryFixture repofixture)
 {
     AccountRepo = repofixture.AccountRepo;
     LedgerRepo  = repofixture.LedgerRepo;
 }
コード例 #5
0
 public LedgerController(ILedgerRepo ledger)
 {
     ledgerRepo = ledger;
 }