public async Task <IActionResult> Get()
 {
     return(Ok(mapper.Map <ICollection <FuncionarioDto> >(await FuncionarioAppService.Listar())));
 }