コード例 #1
0
ファイル: AuthService.cs プロジェクト: EnisMulic/Eventi
 public AuthService
 (
     JwtSettings jwtSettings,
     TokenValidationParameters tokenValidationParameters,
     EventiContext context,
     IMapper mapper
 )
 {
     _jwtSettings = jwtSettings;
     _tokenValidationParameters = tokenValidationParameters;
     _context = context;
     _mapper  = mapper;
 }
コード例 #2
0
 public SponsorService(EventiContext context, IMapper mapper, IUriService uriService) : base(context, mapper, uriService)
 {
 }
コード例 #3
0
 public CityService(EventiContext context, IMapper mapper, IUriService uriService) : base(context, mapper, uriService)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #4
0
 public AdministratorService(EventiContext context, IMapper mapper, IUriService uriService) : base(context, mapper, uriService)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #5
0
ファイル: CountryService.cs プロジェクト: EnisMulic/Eventi
 public CountryService(EventiContext context, IMapper mapper, IUriService uriService, ICityService cityService) : base(context, mapper, uriService)
 {
     _context     = context;
     _mapper      = mapper;
     _cityService = cityService;
 }
コード例 #6
0
 public BaseService(EventiContext context, IMapper mapper, IUriService uriService)
 {
     _context    = context;
     _mapper     = mapper;
     _uriService = uriService;
 }
コード例 #7
0
 public BaseService(EventiContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #8
0
ファイル: OrganizerService.cs プロジェクト: EnisMulic/Eventi
 public OrganizerService(EventiContext context, IMapper mapper, IUriService uriService, IEventService eventService) : base(context, mapper, uriService)
 {
     _context      = context;
     _mapper       = mapper;
     _eventService = eventService;
 }