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