コード例 #1
0
ファイル: TestUnitOfWork.cs プロジェクト: chrisgel15/tacs
 public void Dispose()
 {
     Users        = new TestUserRepository();
     Coins        = new TestCoinRepository();
     Wallets      = new TestWalletRepository();
     Transactions = new TestTransactionRepository();
 }
コード例 #2
0
ファイル: TestUnitOfWork.cs プロジェクト: chrisgel15/tacs
 public TestUnitOfWork()
 {
     Users        = new TestUserRepository();
     Coins        = new TestCoinRepository();
     Wallets      = new TestWalletRepository();
     Transactions = new TestTransactionRepository();
 }