public SimulacaoChamadaService(IDDDService dddService, IPlanoService planoService,
                                ICustoChamadaService custoChamadaService)
 {
     _dddService          = dddService;
     _planoService        = planoService;
     _custoChamadaService = custoChamadaService;
     Erros = new List <string>();
 }
Esempio n. 2
0
 public CustoChamadasController(ICustoChamadaService custoChamadaService)
 {
     _custoChamadaServiceService = custoChamadaService;
 }
 public CustoChamadaServiceTest()
 {
     _custoChamadaRepositoryMock = new Mock <ICustoChamadaRepository>();
     _serviceMock = new CustoChamadaService(_custoChamadaRepositoryMock.Object);
 }