예제 #1
0
 public TestStoreCommand(StoreInteractionType type, T entity)
 {
     Type        = type;
     Entity      = entity;
     EntityTyped = entity;
 }
예제 #2
0
 public TestBulkStoreCommand(StoreInteractionType type)
 {
     Type = type;
 }
예제 #3
0
 public EntityStoreCommand(StoreInteractionType action, IEntity model)
 {
     Type   = action;
     Entity = model;
 }