コード例 #1
0
 public TestStoreCommand(StoreInteractionType type, T entity)
 {
     Type        = type;
     Entity      = entity;
     EntityTyped = entity;
 }
コード例 #2
0
 public TestBulkStoreCommand(StoreInteractionType type)
 {
     Type = type;
 }
コード例 #3
0
ファイル: DataTransaction.cs プロジェクト: DrLeh/AppTemplate
 public EntityStoreCommand(StoreInteractionType action, IEntity model)
 {
     Type   = action;
     Entity = model;
 }