/// <summary>
 ///     This method allows to get the list documents with the specified id
 /// </summary>
 /// <author>
 ///     Luis Gonzalo Quijada Romero
 /// </author>
 /// <returns>
 ///     Returns a JSON with the list information
 /// </returns>
 public JsonResult getFullList(String id)
 {
     try
     {
         BsonDocument document = listTable.getRow(id);
         return(Json(document.ToJson()));
     }
     catch (Exception e) { /*Ignored*/ }
     return(null);
 }