public ActionResult AddComment(string text, int songId) { ISongsRepository <SongDto> songsRepo = Container.Resolve <ISongsRepository <SongDto> >(DefaultRepository); songsRepo.AddComment(text, songId, User.Identity.GetUserId()); return(RedirectToAction("Details", new { id = songId })); }