Beispiel #1
0
 public void Salvar(Emprestimo emprestimo)
 {
     emprestimo.GerarId();
     emprestimo.Amigo = _context.Amigo.Find(emprestimo.Amigo.Id);
     emprestimo.Jogo  = _context.Jogo.Find(emprestimo.Jogo.Id);
     _context.Emprestimo.Add(emprestimo);
     _context.SaveChanges();
 }