Пример #1
0
 public override int Execute()
 {
     ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();
     return 5;
 }
Пример #2
0
        public override decimal Execute()
        {
            ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();

            return 100;
        }
Пример #3
0
 public void Delay(int minutes)
 {
     ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();
     this.DelayWorkItem(minutes);
 }