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