Beispiel #1
0
        static void Main(string[] args)
        {
            storage = new WorkFlowSqlStorage(connectionString, appName);

            var workflow = GetNewWorkFlow();

            workflow.Run();

            Console.WriteLine("Result: " + workflow.Status);
            Console.ReadLine();
        }
Beispiel #2
0
 public WorkFlowState(IWorkFlowStorage storage) : this()
 {
     this.storage = storage;
 }