app.controller('websitesCtrl', ['$scope','ShowsService', function($scope, ShowsService) {
var vm = this;
vm.shows = ShowsService.list();
}]);