Example #1
0
 public int Update(T[] Entity)
 {
     return(GenericDataAccessLayer <T> .Update(Entity));
 }
Example #2
0
 public int Update(T Entity, T Where)
 {
     return(GenericDataAccessLayer <T> .Update(Entity, Where));
 }