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