Esempio n. 1
0
 public string SelecionarProjetos(int?ultimoId)
 {
     try {
         return(JsonConvert.SerializeObject(
                    _projetosService.CarregarProjetos(ultimoId)));
     } catch (Exception ex) {
         _logService.Add(ex.ToString());
         return(Resposta.Erro.ToString());
     }
 }