Exemple #1
0
 /// <summary>
 /// Update a PCLaserMachine.
 /// </summary>
 public void Update(Model.PCLaserMachine pCLaserMachine)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(pCLaserMachine);
 }
Exemple #2
0
 /// <summary>
 /// Insert a PCLaserMachine.
 /// </summary>
 public void Insert(Model.PCLaserMachine pCLaserMachine)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(pCLaserMachine);
 }
 public void Update(Model.PCLaserMachine e)
 {
     this.Update <Model.PCLaserMachine>(e);
 }
 public void Insert(Model.PCLaserMachine e)
 {
     this.Insert <Model.PCLaserMachine>(e);
 }