public static Respuesta GuardarDatos(Torneo obj) { Respuesta resultado = new Respuesta(); try { resultado = Agregar.AltaTorneo(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
public static Respuesta GuardarDatos(Torneo obj) { Respuesta resultado = new Respuesta(); try { obj.IdEquipoUsuario = ((Usuario)HttpContext.Current.Session["loginUsuario"]).IdUsuario; resultado = Agregar.AltaTorneo(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }