/// <summary>
 /// Update a BGProductDepotOutDetail.
 /// </summary>
 public void Update(Model.BGProductDepotOutDetail bGProductDepotOutDetail)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(bGProductDepotOutDetail);
 }
 /// <summary>
 /// Insert a BGProductDepotOutDetail.
 /// </summary>
 public void Insert(Model.BGProductDepotOutDetail bGProductDepotOutDetail)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(bGProductDepotOutDetail);
 }
 public void Update(Model.BGProductDepotOutDetail e)
 {
     this.Update <Model.BGProductDepotOutDetail>(e);
 }
 public void Insert(Model.BGProductDepotOutDetail e)
 {
     this.Insert <Model.BGProductDepotOutDetail>(e);
 }