// I have not bootstrapped a DI framework Yet so I will use the default ctor to bootstrap for now
 public RandomPinGenerator(IRandomPinService randomService)
 {
     _randomPinService = randomService;
 }
示例#2
0
 public void TestStartUp()
 {
     _randomPinService = new RandomPinService();
 }
 public RandomPinGenerator()
 {
     _randomPinService = new RandomPinService();
 }