-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSLC_AS_TCATestScript_1.cs
77 lines (66 loc) · 2.46 KB
/
SLC_AS_TCATestScript_1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
****************************************************************************
* Copyright (c) 2023, Skyline Communications NV All Rights Reserved. *
****************************************************************************
By using this script, you expressly agree with the usage terms and
conditions set out below.
This script and all related materials are protected by copyrights and
other intellectual property rights that exclusively belong
to Skyline Communications.
A user license granted for this script is strictly for personal use only.
This script may not be used in any way by anyone without the prior
written consent of Skyline Communications. Any sublicensing of this
script is forbidden.
Any modifications to this script by the user are only allowed for
personal use and within the intended purpose of the script,
and will remain the sole responsibility of the user.
Skyline Communications will not be responsible for any damages or
malfunctions whatsoever of the script resulting from a modification
or adaptation by the user.
The content of this script is confidential information.
The user hereby agrees to keep this confidential information strictly
secret and confidential and not to disclose or reveal it, in whole
or in part, directly or indirectly to any person, entity, organization
or administration without the prior written consent of
Skyline Communications.
Any inquiries can be addressed to:
Skyline Communications NV
Ambachtenstraat 33
B-8870 Izegem
Belgium
Tel. : +32 51 31 35 69
Fax. : +32 51 31 01 29
E-mail : info@skyline.be
Web : www.skyline.be
Contact : Ben Vandenberghe
****************************************************************************
Revision History:
DATE VERSION AUTHOR COMMENTS
dd/mm/2023 1.0.0.1 XXX, Skyline Initial version
****************************************************************************
*/
namespace SLC_AS_TCATestScript_1
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using Empower.Library.Room0;
using Skyline.DataMiner.Automation;
/// <summary>
/// Represents a DataMiner Automation script.
/// </summary>
public class Script
{
/// <summary>
/// The script entry point.
/// </summary>
/// <param name="engine">Link with SLAutomation process.</param>
public void Run(IEngine engine)
{
engine.GenerateInformation("Hello world");
var order = OrderFactory.CreateOrder("JansChange Order 1");
order.Dispatch("Toon Casteele");
}
}
}