Пример #1
0
        public async Task <IActionResult> GetUserWatchers(string userId, string currencyId = null, string indicatorId = null)
        {
            // Reponse
            var response = await _watcherService.GetUserWatchers(userId, currencyId, indicatorId);

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