Beispiel #1
0
 public EntrevistaController(IEntrevistaService entrevistaService, IPetService petService, IAdotanteService adotanteService)
 {
     _entrevistaService = entrevistaService;
     _petService        = petService;
     _adotanteService   = adotanteService;
 }
Beispiel #2
0
 /// <summary>
 /// Construtor Default
 /// </summary>
 /// <param name="_entrevistaService">Interface do Serviço a ser utilizado.</param>
 /// <param name="logger">Interface do Serviço de logger a ser utilizado.</param>
 public EntrevistaController(IEntrevistaService _entrevistaService, ILogger <EntrevistaController> logger)
 {
     entrevistaService = _entrevistaService;
     _logger           = logger;
 }
Beispiel #3
0
 public EntrevistaController(IEntrevistaService entrevistaService)
 {
     this.entrevistaService = entrevistaService;
 }