예제 #1
0
        public InMemoryBankRepository(ICardService cardService, IBusinessLogicService businessLogicService)
        {
            _cardService          = cardService;
            _businessLogicService = businessLogicService;

            currentUser = FakeDataGenerator.GenerateFakeUser();
            ProducedFakeData();
        }
예제 #2
0
 public InMemoryBankRepository()
 {
     currentUser = FakeDataGenerator.GenerateFakeUser();
     FakeDataGenerator.GenerateFakeCardsToUser(currentUser);
     //TODO other fakes
 }