Пример #1
0
 public ExhibitedPicturesController(GalleryDbContext context, ICurrentExhibitionService currentExhibitionService, IPictureService pictureService, IExhibitionService exhibitionService)
 {
     _context = context;
     this.currentExhibitionService = currentExhibitionService;
     this.pictureService           = pictureService;
     this.exhibitionService        = exhibitionService;
 }
Пример #2
0
 public HomeController(ILogger <HomeController> logger, IExhibitionService exhibitionService,
                       ICurrentExhibitionService currentExhibitionService, IHRService hRService)
 {
     _logger = logger;
     this.exhibitionService        = exhibitionService;
     this.currentExhibitionService = currentExhibitionService;
     this.hRService = hRService;
 }
Пример #3
0
 public CartController(UserManager <UserEntity> userManager, ITicketService ticketService,
                       ICurrentExhibitionService currExhService, IExhibitionService exhService)
 {
     _userManager    = userManager;
     _ticketService  = ticketService;
     _currExhService = currExhService;
     _exhService     = exhService;
 }
Пример #4
0
 public ExploreController(ILogger <ExploreController> logger,
                          ICurrentExhibitionService currentExhibitionService, IExhibitionService exhibitionService,
                          IPictureService pictureService, IArtistService artistService, IHRService hRService)
 {
     _logger = logger;
     this.currentExhibitionService = currentExhibitionService;
     this.exhibitionService        = exhibitionService;
     this.pictureService           = pictureService;
     this.artistService            = artistService;
     this.hRService = hRService;
 }