Ejemplo n.º 1
0
        public async Task <IActionResult> SetWatcher(int watcherId, [FromBody] SetWatcher request)
        {
            // Request
            request.UserId    = "cesarbmx";
            request.WatcherId = watcherId;

            // Reponse
            var response = await _watcherService.SetWatcher(request);

            // Return
            return(Ok(response));
        }