Exemplo n.º 1
0
 public InterestCalculatorController(IInterestCalculatorService service)
 {
     _service = service;
 }
 public InterestCalculatorControllerTests()
 {
     _service    = new InterestCalculatorServiceFake();
     _controller = new InterestCalculatorController(_service);
 }