public async Task <IHttpActionResult> ViewerEmendamento(Guid id) { try { var session = await GetSession(); var persona = await _logicPersone.GetPersona(session._currentUId); var result = await _logicEm.GetEM_LiveProietta(id, persona); return(Ok(result)); } catch (Exception e) { Log.Error("ProiettaEmendamento", e); return(ErrorHandler(e)); } }