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