aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.BL
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2019-07-11 13:22:12 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2019-07-11 13:22:12 +0300
commit71147a336a79ea164c73d3174daeed8d73ae7900 (patch)
treeaf285fd0138db9cd8078ce9a49fb2340484b9787 /Software/Visual_Studio/TCC/Tango.TCC.BL
parent452ae94096604aab8780a88e2ed2434c3c115178 (diff)
downloadTango-71147a336a79ea164c73d3174daeed8d73ae7900.tar.gz
Tango-71147a336a79ea164c73d3174daeed8d73ae7900.zip
TCC/APP added autocomplete features to email/device model search
Diffstat (limited to 'Software/Visual_Studio/TCC/Tango.TCC.BL')
-rw-r--r--Software/Visual_Studio/TCC/Tango.TCC.BL/Tango.TCC.BL.csproj1
-rw-r--r--Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DeviceRequest.cs14
2 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/TCC/Tango.TCC.BL/Tango.TCC.BL.csproj b/Software/Visual_Studio/TCC/Tango.TCC.BL/Tango.TCC.BL.csproj
index 8cdb1a5cb..71ac2ca6a 100644
--- a/Software/Visual_Studio/TCC/Tango.TCC.BL/Tango.TCC.BL.csproj
+++ b/Software/Visual_Studio/TCC/Tango.TCC.BL/Tango.TCC.BL.csproj
@@ -74,6 +74,7 @@
<Compile Include="Web\ColorDetectionResponse.cs" />
<Compile Include="Web\DefinitionRequest.cs" />
<Compile Include="Web\DefinitionResponse.cs" />
+ <Compile Include="Web\DeviceRequest.cs" />
<Compile Include="Web\LoginRequest.cs" />
<Compile Include="Web\LoginResponse.cs" />
<Compile Include="Web\MachineRegistrationRequest.cs" />
diff --git a/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DeviceRequest.cs b/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DeviceRequest.cs
new file mode 100644
index 000000000..5bd68efb9
--- /dev/null
+++ b/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DeviceRequest.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Transport.Web;
+
+namespace Tango.TCC.BL.Web
+{
+ public class DeviceRequest : WebRequestMessage
+ {
+ public String searchString { get; set; }
+ }
+}