Esempio n. 1
0
 public EventMapper(IEventService eventService, ISportService sportService, IPositionService positionService,
                    IEventAttendanceService attendanceService, UserManager <WebAppUser> userManager)
 {
     this.imageService      = new ImageService();
     this.sportService      = sportService;
     this.positionService   = positionService;
     this.attendanceService = attendanceService;
     this.userManager       = userManager;
 }
 public AdminEventController(IServiceProvider provider, IServiceScopeFactory factory,
                             UserManager <WebAppUser> userManager, IEventService eventService, IEventMapper eventMapper, IEventAttendanceService attendanceService)
 {
     this._userManager      = userManager;
     this._eventService     = eventService;
     this.eventMapper       = eventMapper;
     this.attendanceService = attendanceService;
     this.provider          = provider;
     this.factory           = factory;
 }
Esempio n. 3
0
 public EventController(
     UserManager <WebAppUser> userManager,
     IEventMapper eventMapper,
     IEventAttendanceService attendanceService,
     IRatingService ratingService)
 {
     this.ratingService     = ratingService;
     this.userManager       = userManager;
     this.eventMapper       = eventMapper;
     this.attendanceService = attendanceService;
 }
Esempio n. 4
0
 public AdminEventController(
     UserManager <WebAppUser> userManager,
     IEventService eventService,
     IEventMapper eventMapper,
     IEventAttendanceService attendanceService,
     IServiceProvider provider,
     IServiceScopeFactory factory) : base(provider, factory)
 {
     this.userManager       = userManager;
     this.eventService      = eventService;
     this.eventMapper       = eventMapper;
     this.attendanceService = attendanceService;
 }