public void Remove(Models.Goods item)
        {
            var e = this.ToEntity(item);

            context.GoodsSet.Remove(e);
        }
 public void Update(Models.Goods item)
 {
     throw new NotImplementedException();
 }
        public void Add(Models.Goods item)
        {
            var e = this.ToEntity(item);

            context.GoodsSet.Add(e);
        }