Example #1
0
 public LoginService(IPessoasService pessoasService,
                     IDocumentosService documentosService,
                     IEmailsService emailsService,
                     ISenhasService senhasService,
                     ITokenService tokenService)
 {
     _pessoasService    = pessoasService;
     _documentosService = documentosService;
     _emailsService     = emailsService;
     _senhasService     = senhasService;
     _tokenService      = tokenService;
 }
 public DocumentosController(IDocumentosService documentosService)
 {
     _documentosService = documentosService;
 }
Example #3
0
 public DocumentosController(IDocumentosService documentosService)
 {
     _documentosService = documentosService;
 }
 public DocumentosController(IDocumentosService service)
 {
     _service = service;
 }