public MyShowsController(MyShowsService myShows)
 {
     this.MyShows = myShows;
 }
 public MyShowsController(IRepository<ApplicationUser, string> users, IAppSettings appSettings, MyShowsService myShowsService)
     : base(users, appSettings)
 {
     this.MyShowsService = myShowsService;
 }