public SiteMaster(
     IGamePropertyService gamePropertyService,
     ICategoryService categoryService)
 {
     GamePropertyService = gamePropertyService;
     CategoryService     = categoryService;
 }
 public ShowCategories(
     IGamePropertyService gamePropertyService,
     IBetService betService,
     ICategoryService categoryService)
 {
     GamePropertyService = gamePropertyService;
     BetService          = betService;
     CategoryService     = categoryService;
 }
 public ShowCategory(
     IGamePropertyService gamePropertyService,
     ICategoryService categoryService,
     IBetService betService,
     IWatcheMoviesStatisticService watcheMoviesStatisticService)
 {
     GamePropertyService          = gamePropertyService;
     CategoryService              = categoryService;
     BetService                   = betService;
     WatcheMoviesStatisticService = watcheMoviesStatisticService;
 }
 public ShowAllDBMovies(
     IGamePropertyService gamePropertyService,
     IMovieService movieService,
     IWatchedMovieService watchedMovieService,
     IUserService userService)
 {
     GamePropertyService = gamePropertyService;
     MovieService        = movieService;
     WatchedMovieService = watchedMovieService;
     UserService         = userService;
 }
Beispiel #5
0
 public Calendar(IGamePropertyService gamePropertyService)
 {
     GamePropertyService = gamePropertyService;
 }