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