Пример #1
0
 public MemberService(AiesecContext context, IMapper mapper, ISecurityService securityService, IMailService mailService)
 {
     _context         = context;
     _mapper          = mapper;
     _securityService = securityService;
     _mailService     = mailService;
 }
Пример #2
0
 public OfficeService(AiesecContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public TaskService(AiesecContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public ReportService(AiesecContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #5
0
        private static readonly uint[] TimeOfDayUids = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 }; // => Starts at 8 AM and every iteration is an hour to add

        public EventService(AiesecContext context, IMapper mapper) : base(context, mapper)
        {
            _dbContext = context;
        }
 public ReadService(AiesecContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
 public NoticeService(AiesecContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public EventsController(IEventService service, AiesecContext context) : base(service)
 {
     _eventService = service;
     _dbContext    = context;
 }
Пример #9
0
 public LocalCommitteeService(AiesecContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public FileService(AiesecContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public FunctionalFieldService(AiesecContext context, IMapper mapper) : base(context, mapper)
 {
 }