aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-01-14 13:30:04 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-01-14 13:30:04 +0200
commit04db84896f75bb761e8b3d482b4cb0f82c08d96e (patch)
tree50727de3821b0b0797aa757d3ed3bc6dc8ff4383 /Software/Visual_Studio/Web/Tango.MachineService/Controllers
parentc23924624cd45b67eecc1c495c461bdc70bf551c (diff)
downloadTango-04db84896f75bb761e8b3d482b4cb0f82c08d96e.tar.gz
Tango-04db84896f75bb761e8b3d482b4cb0f82c08d96e.zip
Added code comments for:
Machine Service.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/SynchronizationController.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/SynchronizationController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/SynchronizationController.cs
index 8b5bee7ae..fb937f52e 100644
--- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/SynchronizationController.cs
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/SynchronizationController.cs
@@ -18,6 +18,11 @@ namespace Tango.MachineService.Controllers
{
public class SynchronizationController : ApiController
{
+ /// <summary>
+ /// Expects a DB synchronization request from a remote machine and returns the synchronized version of the machine database.
+ /// </summary>
+ /// <param name="request">The request.</param>
+ /// <returns></returns>
[HttpPost]
public SynchronizeDBResponse Synchronize(SynchronizeDBRequest request)
{