public void Update(Shop item)
 {
     db.Entry(item).State = EntityState.Modified;
 }
 public void Create(Shop item)
 {
     db.Shops.Add(item);
 }