示例#1
0
 public MainPageController(IPublicationBll publicationBll, IImageGalleryBll imageGalleryBLL, IVideoBll videoBll, ITourneyBll tourneyBll, ITableRecordBll tableRecordBll, ILogger <MainPageController> logger)
 {
     this.publicationBll  = publicationBll;
     this.imageGalleryBLL = imageGalleryBLL;
     this.videoBll        = videoBll;
     this.tourneyBll      = tourneyBll;
     this.tableRecordBll  = tableRecordBll;
     this.logger          = logger;
 }
示例#2
0
 public RankingsController(ITableRecordBll tableRecordBll, ITourneyBll tourneyBll, IRanking ranking)
 {
     this.tableRecordBll = tableRecordBll;
     this.tourneyBll     = tourneyBll;
     this.ranking        = ranking;
 }
示例#3
0
 public ValuesController(ITableRecordBll tableRecordBll, IGameBll gameBll)
 {
     this.tableRecordBll = tableRecordBll;
     this.gameBll        = gameBll;
 }