/// <summary>
 /// Update a BGHandbookDepotOutDetail.
 /// </summary>
 public void Update(Model.BGHandbookDepotOutDetail bGHandbookDepotOutDetail)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(bGHandbookDepotOutDetail);
 }
 /// <summary>
 /// Insert a BGHandbookDepotOutDetail.
 /// </summary>
 public void Insert(Model.BGHandbookDepotOutDetail bGHandbookDepotOutDetail)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(bGHandbookDepotOutDetail);
 }
示例#3
0
 public void Update(Model.BGHandbookDepotOutDetail e)
 {
     this.Update <Model.BGHandbookDepotOutDetail>(e);
 }
示例#4
0
 public void Insert(Model.BGHandbookDepotOutDetail e)
 {
     this.Insert <Model.BGHandbookDepotOutDetail>(e);
 }