Exemplo n.º 1
0
 /// <summary>
 /// Update a Retail.
 /// </summary>
 public void Update(Model.Retail retail)
 {
     //
     // todo: add other logic here.
     //
     accessor.Update(retail);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Insert a Retail.
 /// </summary>
 public void Insert(Model.Retail retail)
 {
     //
     // todo:add other logic here
     //
     accessor.Insert(retail);
 }
Exemplo n.º 3
0
 public void Update(Model.Retail e)
 {
     this.Update <Model.Retail>(e);
 }
Exemplo n.º 4
0
 public void Insert(Model.Retail e)
 {
     this.Insert <Model.Retail>(e);
 }