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