Exemple #1
0
        public async Task <IActionResult> SearchTrackApplicationAsync(int userId, int applicationTypeId, string text)
        {
            var result = await _service.SearchTrackApplicationAsync(userId, applicationTypeId, text);

            return(Ok(result));
        }