Ejemplo n.º 1
0
 public ShowService(FilmHausDbContext filmHausDbContext, IUserShowService userShowService, IUserShowRatingService userShowRatingService)
 {
     FilmHausDbContext     = filmHausDbContext;
     UserShowService       = userShowService;
     UserShowRatingService = userShowRatingService;
 }
Ejemplo n.º 2
0
 public RatingsController(IUserFilmRatingService userFilmRatingService, IUserShowRatingService userShowRatingService)
 {
     UserFilmRatingService = userFilmRatingService;
     UserShowRatingService = userShowRatingService;
 }