public ProfessorController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IRecuperarArquivosAppService arquivoAppService, IDelecaoDeArquivosAppService deletarAppService,
                            IEnviarArquivosAppService enviarAquivoAppService, IProfessorAppService professorAppService, ILerArquivoAppService lerArquivoAppService, ILerArquivoEmBytesAppService lerArquivoEmBytesAppService)
 {
     _mapper = mapper;
     _professorAppService    = professorAppService;
     _unidadeAppService      = unidadeAppService;
     _arquivoAppService      = arquivoAppService;
     _enviarAquivoAppService = enviarAquivoAppService;
     _encoder = UrlEncoder.Create();
 }
 public CoordenadorController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService,
                              IRecuperarArquivosAppService recuperarArquivoAppService, IDelecaoDeArquivosAppService deletarArquivoAppService,
                              IEnviarArquivosAppService enviarArquivoAppService, ICoordenadorAppService coordenadorAppService,
                              ILerArquivoEmBytesAppService lerArquivoEmBytesAppService, ILerArquivoAppService lerArquivoAppService)
 {
     _mapper                     = mapper;
     _moduloAppService           = moduloAppService;
     _unidadeAppService          = unidadeAppService;
     _recuperarArquivoAppService = recuperarArquivoAppService;
     _enviarArquivoAppService    = enviarArquivoAppService;
     _coordenadorAppService      = coordenadorAppService;
     _encoder                    = UrlEncoder.Create();
 }