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