Exemplo n.º 1
0
        public async Task <IActionResult> GetTrackApplicationAsync(int userId, int applicationTypeId, int skip, int limit)
        {
            var result = await _service.GetTrackApplicationAsync(userId, applicationTypeId, skip, limit);

            return(Ok(result));
        }