Ejemplo n.º 1
0
        public async Task <IActionResult> GetArchiveSongs(int i, int j)
        {
            var songs = await _songRepository.GetFromArchiveByIndex(i, j);

            return(Json(songs));
        }