-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathF14NProxy.cs
More file actions
49 lines (42 loc) · 1.2 KB
/
F14NProxy.cs
File metadata and controls
49 lines (42 loc) · 1.2 KB
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
using FluentAutomation.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptCs.FluentAutomation
{
public class F14NProxy
{
public F14N scriptPackInstance = null;
public F14NProxy(F14N scriptPackInstance)
{
this.scriptPackInstance = scriptPackInstance;
}
public F14NProxy Config(Action<FluentAutomationSettingsProxy> action)
{
this.scriptPackInstance.Config(action);
return this;
}
public F14NProxy Run(Action action)
{
this.scriptPackInstance.Run(action);
return this;
}
public F14NProxy Run(string name, Action action)
{
this.scriptPackInstance.Run(name, action);
return this;
}
public F14NProxy Run(Action<IActionSyntaxProvider> action)
{
this.scriptPackInstance.Run(action);
return this;
}
public F14NProxy Run(string name, Action<IActionSyntaxProvider> action)
{
this.scriptPackInstance.Run(name, action);
return this;
}
}
}