Ejemplo n.º 1
0
 public TestStoreCommand(StoreInteractionType type, T entity)
 {
     Type        = type;
     Entity      = entity;
     EntityTyped = entity;
 }
Ejemplo n.º 2
0
 public TestBulkStoreCommand(StoreInteractionType type)
 {
     Type = type;
 }
Ejemplo n.º 3
0
 public EntityStoreCommand(StoreInteractionType action, IEntity model)
 {
     Type   = action;
     Entity = model;
 }