Exemplo n.º 1
0
 public override int Execute()
 {
     ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();
     return 5;
 }
Exemplo n.º 2
0
        public override decimal Execute()
        {
            ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();

            return 100;
        }
Exemplo n.º 3
0
 public void Delay(int minutes)
 {
     ThreadSafeDataAccess = new NormalWorkflowThreadSafeDataAccess();
     this.DelayWorkItem(minutes);
 }