コード例 #1
0
 public override int Execute()
 {
     ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();
     return 5;
 }
コード例 #2
0
ファイル: CloudCostingTests.cs プロジェクト: Exclr8/CloudCore
        public override decimal Execute()
        {
            ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();

            return 100;
        }
コード例 #3
0
ファイル: BaseActivityTests.cs プロジェクト: Exclr8/CloudCore
 public void Delay(int minutes)
 {
     ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();
     this.DelayWorkItem(minutes);
 }