Пример #1
0
 /// <summary>
 /// Update a InvoiceQODetail.
 /// </summary>
 public void Update(Model.InvoiceQODetail invoiceQODetail)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(invoiceQODetail);
 }
Пример #2
0
 /// <summary>
 /// Insert a InvoiceQODetail.
 /// </summary>
 public void Insert(Model.InvoiceQODetail invoiceQODetail)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(invoiceQODetail);
 }
Пример #3
0
 public void Update(Model.InvoiceQODetail e)
 {
     this.Update <Model.InvoiceQODetail>(e);
 }
Пример #4
0
 public void Insert(Model.InvoiceQODetail e)
 {
     this.Insert <Model.InvoiceQODetail>(e);
 }