Esempio n. 1
0
        public static void runLoadBearingVendor()
        {
            Thread t1 = new Thread(() => LoadBearing.activateThreads(Credentials.MedicalClient5010));
            Thread t2 = new Thread(() => LoadBearing.activateThreads(Credentials.AutomationMedical01));
            Thread t3 = new Thread(() => LoadBearing.activateThreads(Credentials.AutomationMedical02));

            t1.Start();
            t2.Start();
            t3.Start();
        }
Esempio n. 2
0
 public static void testRunLoadBearingVendor(Client client)
 {
     LoadBearing.UploadLoadBearingFiles(client);
 }