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;
 }
Beispiel #2
0
 public GalleriesController(UserManager <ApplicationUser> userManager, IImageGalleryBll imageGalleryBll)
 {
     this.userManager     = userManager;
     this.imageGalleryBll = imageGalleryBll;
 }