diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-10-26 07:03:25 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-10-26 07:03:25 +0300 |
| commit | 6f5a02a0442c274a12781ca81135c1a51b5c434a (patch) | |
| tree | eb1341a325c51afaf9a1dedf02b36e36614cb86d /Software/Visual_Studio/Tango.CodeGeneration | |
| parent | 4b7322a0a052157eed4240e917ffa5d7de2fe2fe (diff) | |
| download | Tango-6f5a02a0442c274a12781ca81135c1a51b5c434a.tar.gz Tango-6f5a02a0442c274a12781ca81135c1a51b5c434a.zip | |
Twine Studio: Added build variant to all service requests.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml b/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml index cfcc89716..ab281d929 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml +++ b/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml @@ -35,6 +35,16 @@ namespace @(model.Namespace) /// <summary> /// Initializes a new instance of the <see cref="@(model.Name)"/> class. /// </summary> + /// <param name="address">The service address.</param> + /// <param name="controller">The controller name.</param> + public @(model.Name)(String address, String controller, String token) : base(address, controller, token) + { + + } + + /// <summary> + /// Initializes a new instance of the <see cref="@(model.Name)"/> class. + /// </summary> /// <param name="cloned">Other instance.</param> public @(model.Name)(@(model.Name) cloned) : base(cloned) { |
