aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-12-30 13:01:58 +0200
committerShlomo Hecht <shlomo@twine-s.com>2020-12-30 13:01:58 +0200
commit624d19b9b7e540e16f605dce4e1c82af60372099 (patch)
tree07889b00717d3a30bb0281ed0233543fabfc9aaf /Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml
parentc4aa1735efed2c87e5056dde442211c08d3f66ff (diff)
parent7c56f0ff6a9ceb7148b6cab01bbac5ddf592acb2 (diff)
downloadTango-624d19b9b7e540e16f605dce4e1c82af60372099.tar.gz
Tango-624d19b9b7e540e16f605dce4e1c82af60372099.zip
merge
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml')
-rw-r--r--Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml59
1 files changed, 0 insertions, 59 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml b/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml
deleted file mode 100644
index cfcc89716..000000000
--- a/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoWebClientv2CodeFile.cshtml
+++ /dev/null
@@ -1,59 +0,0 @@
-@{
- Tango.CodeGeneration.TangoWebClientv2CodeFile model = Model as Tango.CodeGeneration.TangoWebClientv2CodeFile;
-}
-using System;
-using System.Threading.Tasks;
-using Tango.Web;
-
-namespace @(model.Namespace)
-{
- /// <summary>
- /// Represents a machine service @(model.ControllerName) web client.
- /// </summary>
- /// <seealso cref="Tango.Web.TangoWebClient" />
- public abstract class @(model.Name) : TangoWebClientV2<@(model.LoginRequest), @(model.LoginResponse)>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="@(model.Name)"/> class.
- /// </summary>
- /// <param name="address">The service address.</param>
- /// <param name="token">Existing token.</param>
- public @(model.Name)(String address, String token) : base(address, "@(model.ControllerName)", token)
- {
-
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="@(model.Name)"/> class.
- /// </summary>
- /// <param name="address">The service address.</param>
- public @(model.Name)(String address) : this(address, null)
- {
-
- }
-
- /// <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)
- {
-
- }
-
- @foreach (var action in model.Actions)
- {
- <div>
- /// <summary>
- /// Executes the @(action.Name) action and returns @(action.Response).
- /// </summary>
- /// <returns></returns>
- public Task<@(action.Response)> @(action.Name)(@(action.Request) request)
- {
- return Post<@(action.Request), @(action.Response)>("@(action.Name)", request);
- }
-
- </div>
- }
- }
-} \ No newline at end of file