Esempio n. 1
0
 public ExchangeRateServiceTests()
 {
     TestServicesProvider.GetModelTestData().FillData();
     context             = TestServicesProvider.GetContext();
     exchangeRateService = TestServicesProvider.GetExchangeRateService();
     accountService      = TestServicesProvider.GetAccountService();
 }
 public CurrencyServiceTests()
 {
     context         = TestServicesProvider.GetContext();
     currencyService = new CurrencyService(context);
     TestServicesProvider.GetModelTestData().FillData();
 }
 public AccountServiceTests()
 {
     context = TestServicesProvider.GetContext();
     TestServicesProvider.GetModelTestData().FillData();
     accountService = TestServicesProvider.GetAccountService();
 }
Esempio n. 4
0
 public TransferControllerTests()
 {
     context = TestServicesProvider.GetContext();
 }
 public IExchangeRateServiceTests()
 {
     context             = TestServicesProvider.GetContext();
     exchangeRateService = new ExchangeRateService(context, accountService);
 }
 public UserServiceTests()
 {
     TestServicesProvider.GetModelTestData().FillData();
     context = TestServicesProvider.GetContext();
 }
Esempio n. 7
0
 public TransactionServiceTests()
 {
     TestServicesProvider.GetModelTestData().FillData();
     context            = TestServicesProvider.GetContext();
     transactionService = TestServicesProvider.GetTransactionService();
 }