public IHttpActionResult LaunchMovement(int id)
 {
     try
     {
         _service.Launch(id);
         return(Ok());
     }
     catch (ApplicationException e)
     {
         return(BadRequest(e.Message));
     }
 }