Exemple #1
0
 public static void Update(Campeonato c)
 {
     try
     {
         using (DesafioContext db = new DesafioContext())
         {
             db.Entry(c).State = EntityState.Modified;
             db.SaveChanges();
         }
     }
     catch
     {
         throw new Exception("Error al Actualizar resutlado - Verifique los Datos");
     }
 }
Exemple #2
0
 public static void Update(Jugador j)
 {
     try
     {
         using (DesafioContext db = new DesafioContext())
         {
             db.Entry(j).State = EntityState.Modified;
             db.SaveChanges();
         }
     }
     catch
     {
         throw new Exception("Error al actualizar los datos - Verifiquelos por favor");
     }
 }
Exemple #3
0
 public static void Update(Postulacion p)
 {
     try
     {
         using (DesafioContext db = new DesafioContext())
         {
             db.Entry(p).State = EntityState.Modified;
             db.SaveChanges();
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Actualizar - Verifique los Datos" + ex.Message);
     }
 }
Exemple #4
0
 public static void Update(Partido p)
 {
     try
     {
         using (DesafioContext db = new DesafioContext())
         {
             db.Entry(p).State = EntityState.Modified;
             db.SaveChanges();
         }
     }
     catch
     {
         throw new Exception("Error al Actualizar - Verifique los Datos");
     }
 }
Exemple #5
0
 public static void PartialUpdate(Jugador j, int categoriaId)
 {
     try
     {
         using (DesafioContext db = new DesafioContext())
         {
             Jugador jugador = db.Jugadores.FirstOrDefault(x => x.Email == j.Email);
             db.Entry(jugador).State = EntityState.Modified;
             db.SaveChanges();
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al actualizar los datos - " + ex.Message);
     }
 }
Exemple #6
0
 public static void CambioPassword(string Email, string Password)
 {
     try
     {
         using (DesafioContext db = new DesafioContext())
         {
             Jugador j = db.Jugadores.FirstOrDefault(x => x.Email == Email);
             if (j != null)
             {
                 j.Password        = Password;
                 db.Entry(j).State = EntityState.Modified;
                 db.SaveChanges();
             }
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al actualizar los datos -" + ex.Message);
     }
 }