Exemplo n.º 1
0
        public async Task <IActionResult> GetAllLines(string currencyId = null, IndicatorType?indicatorType = null, string indicatorId = null, string userId = null)
        {
            // Reponse
            var response = await _lineService.GetAllLines(currencyId, indicatorType, indicatorId, userId);

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