コード例 #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 VideosController(UserManager <ApplicationUser> userManager, IVideoBll videoBll)
 {
     this.userManager = userManager;
     this.videoBll    = videoBll;
 }