Example #1
0
 protected AddDataRowTransactionCommandBase(Account account, IAddTranCommandService addTranCommandService, IDBRow dr, Framework.OperationType operationType)
     : base(account, Visitors.AddDataRowFormatTransactionCommandVisitor.Default, addTranCommandService)
 {
     this.DataRow       = dr;
     this.OperationType = operationType;
 }
Example #2
0
 internal AddDataRowPhysicalTransactionCommand(Account account, IDBRow dr, Framework.OperationType operationType)
     : base(account, AddPhysicalTransactionCommandService.Default, dr, operationType)
 {
 }
Example #3
0
 internal override Commands.AddTranCommandBase Create(Account account, IDBRow dataRowTran, Framework.OperationType operationType)
 {
     throw new NotImplementedException();
 }
Example #4
0
 internal override Commands.AddTranCommandBase Create(Account account, IDBRow dataRowTran, Framework.OperationType operationType)
 {
     return(new Commands.AddDataRowTransactionCommand(account, dataRowTran, operationType));
 }
Example #5
0
 internal abstract Commands.AddTranCommandBase Create(Account account, IDBRow dataRowTran, Framework.OperationType operationType);