public UserController(IScheduleItemService scheduleItemService, IUserScheduleService userScheduleService, IUserService userService, OxiteContext context)
 {
     this.scheduleItemService = scheduleItemService;
     this.userScheduleService = userScheduleService;
     this.userService         = userService;
     this.context             = context;
 }
 public RedirectionController(IEventService eventService, IScheduleItemService scheduleItemService, OxiteContext context)
 {
     this.eventService        = eventService;
     this.scheduleItemService = scheduleItemService;
     this.oxiteContext        = context;
     ValidateRequest          = false;
 }
        public SpeakerController(IEventService eventService, ISpeakerService speakerService, IScheduleItemService scheduleItemService)
        {
            this.eventService        = eventService;
            this.speakerService      = speakerService;
            this.scheduleItemService = scheduleItemService;

            ValidateRequest = false;
        }
        public PageController(IEventService eventService, IScheduleItemService scheduleItemService, AppSettingsHelper appSettings)
        {
            this.eventService        = eventService;
            this.scheduleItemService = scheduleItemService;
            this.appSettings         = appSettings;

            ValidateRequest = false;
        }
 public ScheduleItemController(IEventService eventService, IScheduleItemService scheduleItemService, IUserService userService, IUser user)
 {
     this.eventService        = eventService;
     this.scheduleItemService = scheduleItemService;
     this.userService         = userService;
     this.currentUser         = user;
     ValidateRequest          = false;
 }
Exemple #6
0
 public ScheduleItemController(IEventService eventService, IScheduleItemService scheduleItemService, ITagService tagService, IConferencesCommentService commentService, OxiteContext context)
 {
     this.eventService        = eventService;
     this.scheduleItemService = scheduleItemService;
     this.tagService          = tagService;
     this.commentService      = commentService;
     this.context             = context;
     ValidateRequest          = false;
 }
Exemple #7
0
 public ReportsController(IScheduleItemService scheduleItemService, OxiteContext context)
 {
     _scheduleItemService = scheduleItemService;
     _context             = context;
 }
 public ScheduleItemController(IScheduleItemService scheduleItemService)
 {
     _scheduleItemService = scheduleItemService;
 }
 public ScheduleItemModelBinder(IEventService eventService, IScheduleItemService scheduleItemService)
 {
     this.eventService        = eventService;
     this.scheduleItemService = scheduleItemService;
 }
 public ScheduleItemsTagListActionFilter(IScheduleItemService scheduleItemService)
 {
     this.scheduleItemService = scheduleItemService;
 }