Ejemplo n.º 1
0
 public static void Update <T>(T entity, Action <T> modifier)
 {
     EntityCreator.Update <T>(entity, new RandomObjectGenerator(), modifier);
 }
Ejemplo n.º 2
0
 public static void Update <T>(T entity, RandomObjectGenerator generator)
 {
     EntityCreator.Update <T>(entity, generator, null);
 }
Ejemplo n.º 3
0
 public static void Update <T>(T entity)
 {
     EntityCreator.Update <T>(entity, new RandomObjectGenerator(), null);
 }