public ClubParticipantsServiceTests()
 {
     _ClubParticipantsService = new ClubParticipantsService(_repositoryWrapper.Object,
                                                            _mapper.Object,
                                                            _adminTypeService.Object,
                                                            null);
 }
예제 #2
0
 public ClubMembersService(IRepositoryWrapper repositoryWrapper,
                           IMapper mapper,
                           UserManager <User> userManager,
                           IClubParticipantsService ClubParticipantsService)
 {
     _repositoryWrapper       = repositoryWrapper;
     _mapper                  = mapper;
     _userManager             = userManager;
     _ClubParticipantsService = ClubParticipantsService;
 }
예제 #3
0
 public AdminService(IRepositoryWrapper repoWrapper,
                     UserManager <User> userManager,
                     IMapper mapper,
                     RoleManager <IdentityRole> roleManager,
                     IClubParticipantsService clubParticipants,
                     IRegionAdministrationService regionService,
                     ICityParticipantsService cityParticipants)
 {
     _repoWrapper      = repoWrapper;
     _userManager      = userManager;
     _mapper           = mapper;
     _roleManager      = roleManager;
     _clubParticipants = clubParticipants;
     _regionService    = regionService;
     _cityParticipants = cityParticipants;
 }
예제 #4
0
 public ClubController(ILoggerService <ClubController> logger,
                       IMapper mapper,
                       IClubService clubService,
                       IClubParticipantsService clubParticipantsService,
                       IClubDocumentsService clubDocumentsService,
                       IClubAccessService clubAccessService,
                       UserManager <User> userManager)
 {
     _logger                  = logger;
     _mapper                  = mapper;
     _clubService             = clubService;
     _clubParticipantsService = clubParticipantsService;
     _clubDocumentsService    = clubDocumentsService;
     _clubAccessService       = clubAccessService;
     _userManager             = userManager;
 }
예제 #5
0
 public ClubController(ILoggerService <ClubController> logger,
                       IMapper mapper,
                       IClubService ClubService,
                       IClubParticipantsService ClubParticipantsService,
                       IClubDocumentsService ClubDocumentsService,
                       IClubAccessService ClubAccessService,
                       IClubAnnualReportService ClubAnnualReportService)
 {
     _logger                  = logger;
     _mapper                  = mapper;
     _ClubService             = ClubService;
     _ClubParticipantsService = ClubParticipantsService;
     _ClubDocumentsService    = ClubDocumentsService;
     _ClubAccessService       = ClubAccessService;
     _ClubAnnualReportService = ClubAnnualReportService;
 }