Ejemplo n.º 1
0
 public static bool UpdateCustomer(Customer customer, int id)
 {
     return(dBLayer.UpdateEntity <Customer>(customer, id));
 }
Ejemplo n.º 2
0
 public void UpdateEntity <T>(T Entity)
 {
     dbLayer.UpdateEntity(Entity);
 }
Ejemplo n.º 3
0
 public static bool UpdateAgent(int id, Agent agent)
 {
     return(dBLayer.UpdateEntity <Agent>(agent, id));
 }