Exemple #1
0
 public DailyAmountController(IDailyAmountService dailyAmountService)
 {
     _dailyAmountService = dailyAmountService;
 }
 public DailyAmountControllerTest()
 {
     _service    = new DailyAmountServiceMock();
     _controller = new DailyAmountController(_service);
 }