Exemple #1
0
 public LoginService(IPessoasService pessoasService,
                     IDocumentosService documentosService,
                     IEmailsService emailsService,
                     ISenhasService senhasService,
                     ITokenService tokenService)
 {
     _pessoasService    = pessoasService;
     _documentosService = documentosService;
     _emailsService     = emailsService;
     _senhasService     = senhasService;
     _tokenService      = tokenService;
 }
Exemple #2
0
 public PessoasController(IPessoasService service)
 {
     _service = service;
 }
 public PessoasAppService(IPessoasService pessoasService)
     : base(pessoasService)
 {
     _pessoasService = pessoasService;
 }