public override void main()
        {
            services = Services;

            Stopwatch sw = new Stopwatch();

            sw.Start();

            setData();
            CerificationResult result = perform_certify(Orchestration);

            sw.Stop();

            Console.WriteLine("Tempo total de verificação={0} : INCONCLUSIVE ? {1}", sw.Elapsed, result == CerificationResult.Inconclusive);
        }
Ejemplo n.º 2
0
 public SWLVisitorOrchestrate(gov.cca.Services services, int workflow_handle, IWorkflowServices core_services)
 {
     this.services        = services;
     this.workflow_handle = workflow_handle;
     this.core_services   = core_services;
 }