Exemplo n.º 1
0
 public async Task Put([FromBody] Amigos entity)
 {
     try
     {
         using (var db = new DBInvilliaDesafioContext())
         {
             db.Entry(entity).State = EntityState.Modified;
             await db.SaveChangesAsync();
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.StackTrace);
     }
 }
Exemplo n.º 2
0
 public async Task Delete(int id)
 {
     try
     {
         Emprestimos entity;
         using (var db = new DBInvilliaDesafioContext())
         {
             entity = db.Emprestimos.ToList().Where(x => x.Id == id).FirstOrDefault();
             if (entity != null && entity.Id > 0)
             {
                 db.Entry(entity).State = EntityState.Deleted;
                 await db.SaveChangesAsync();
             }
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.StackTrace);
     }
 }
Exemplo n.º 3
0
 public async Task Put([FromBody] EmprestimoOrigem entity)
 {
     try
     {
         Emprestimos emp = new Emprestimos();
         emp.Id                = entity.Id;
         emp.IdAmigo           = entity.IdAmigo;
         emp.IdJogo            = entity.IdJogo;
         emp.DataEmprestimo    = entity.DataEmprestimo;
         emp.IdAmigoNavigation = new Amigos();
         emp.IdJogoNavigation  = new Jogos();
         using (var db = new DBInvilliaDesafioContext())
         {
             //db.Entry(entity).State = EntityState.Modified;
             db.Entry(emp).State = EntityState.Modified;
             await db.SaveChangesAsync();
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.StackTrace);
     }
 }