예제 #1
0
 protected abstract ICommand OnInstantiate(BaseClientOperation clientOperation, BaseCommandOperation commandOperation);
예제 #2
0
 protected override ICommand OnInstantiate(BaseClientOperation clientOperation, BaseCommandOperation commandOperation)
 => new GraphCommand((GraphClientOperation)clientOperation, (GraphCommandOperation)commandOperation);
예제 #3
0
 protected override ICommand OnInstantiate(BaseClientOperation clientOperation, BaseCommandOperation commandOperation)
 => new SqlCommand((SqlClientOperation)clientOperation, (SqlCommandOperation)commandOperation);
예제 #4
0
 public BaseCommand(BaseClientOperation client, BaseCommandOperation query)
 {
     Client         = client;
     Implementation = query;
 }