Exemplo n.º 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 SenhaController(ISenhasService senhasService, IPlataformaService plataformaService)
 {
     _senhasService     = senhasService;
     _plataformaService = plataformaService;
 }
Exemplo n.º 3
0
 public SenhasController(ISenhasService service)
 {
     _service = service;
 }