public IEnumerable <ArtistData> Get()
 {
     return(_repository.GetAll());
 }
예제 #2
0
        public ActionResult Index()
        {
            var artists = _repository.GetAll();

            return(View(artists));
        }