Esempio n. 1
0
 /// <summary>
 /// Update a PricingWay.
 /// </summary>
 public void Update(Model.PricingWay pricingWay)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(pricingWay);
 }
Esempio n. 2
0
 /// <summary>
 /// Insert a PricingWay.
 /// </summary>
 public void Insert(Model.PricingWay pricingWay)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(pricingWay);
 }
Esempio n. 3
0
 public Model.PricingWay GetPrev(Model.PricingWay e)
 {
     return(sqlmapper.QueryForObject <Model.PricingWay>("PricingWay.get_prev", e));
 }
Esempio n. 4
0
 public bool HasRowsAfter(Model.PricingWay e)
 {
     return(sqlmapper.QueryForObject <bool>("PricingWay.has_rows_after", e));
 }
Esempio n. 5
0
 public Model.PricingWay GetNext(Model.PricingWay e)
 {
     return(sqlmapper.QueryForObject <Model.PricingWay>("PricingWay.get_next", e));
 }
Esempio n. 6
0
 public void Update(Model.PricingWay e)
 {
     this.Update <Model.PricingWay>(e);
 }
Esempio n. 7
0
 public bool HasRowsBefore(Model.PricingWay e)
 {
     return(sqlmapper.QueryForObject <bool>("PricingWay.has_rows_before", e));
 }
Esempio n. 8
0
 public void Insert(Model.PricingWay e)
 {
     this.Insert <Model.PricingWay>(e);
 }
Esempio n. 9
0
 public Model.PricingWay GetNext(Model.PricingWay e)
 {
     return(accessor.GetNext(e));
 }
Esempio n. 10
0
 public Model.PricingWay GetPrev(Model.PricingWay e)
 {
     return(accessor.GetPrev(e));
 }
Esempio n. 11
0
 public bool HasRowsAfter(Model.PricingWay e)
 {
     return(accessor.HasRowsAfter(e));
 }
Esempio n. 12
0
 public bool HasRowsBefore(Model.PricingWay e)
 {
     return(accessor.HasRowsBefore(e));
 }