public Contact Update(Contact contact)
 {
     _context.Update(contact);
     _context.SaveChanges();
     return(contact);
 }