示例#1
0
 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
 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
 public OrganizerService(EventiContext context, IMapper mapper, IUriService uriService, IEventService eventService) : base(context, mapper, uriService)
 {
     _context      = context;
     _mapper       = mapper;
     _eventService = eventService;
 }