示例#1
0
 public UserController(IScheduleItemService scheduleItemService, IUserScheduleService userScheduleService, IUserService userService, OxiteContext context)
 {
     this.scheduleItemService = scheduleItemService;
     this.userScheduleService = userScheduleService;
     this.userService         = userService;
     this.context             = context;
 }
示例#2
0
 public ScheduleItemController(IEventService eventService, IScheduleItemService scheduleItemService, ITagService tagService, IConferencesCommentService commentService, IUserScheduleService userScheduleService, OxiteContext context)
 {
     this.eventService        = eventService;
     this.scheduleItemService = scheduleItemService;
     this.tagService          = tagService;
     this.commentService      = commentService;
     this.context             = context;
     this.userScheduleService = userScheduleService;
     ValidateRequest          = false;
 }
示例#3
0
 public ProgramScheduleService(IRepository <ProgramSchedule> repository, IUserScheduleService userScheduleService
                               , IDishService dishService, IMapper mapper, FitnessAppContext context, IProgramTypeService typeService)
 {
     _programScheduleRepository = repository;
     _userScheduleService       = userScheduleService;
     _dishService        = dishService;
     _mapper             = mapper;
     _context            = context;
     _programTypeService = typeService;
 }
示例#4
0
 public ManageController(
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     IUserService userService,
     ISchoolService schoolService,
     IUserScheduleService scheduleService,
     IMapper mapper
     )
 {
     this.userManager     = userManager;
     this.signInManager   = signInManager;
     this.userService     = userService;
     this.schoolService   = schoolService;
     this.scheduleService = scheduleService;
     this.mapper          = mapper;
 }
        /// <summary>
        /// Show constructor
        /// </summary>
        /// <param name="showService"></param>
        /// <param name="userScheduleService"></param>
        /// <param name="carouselService"></param>

        public ShowController(IShowService showService, IUserScheduleService userScheduleService, ICarouselService carouselService)
        {
            _showService          = showService;
            _userSchedulerService = userScheduleService;
            _carouselService      = carouselService;
        }
 public UserScheduleController(IMapper mapper, IUserScheduleService userScheduleService)
 {
     _mapper = mapper;
     _userScheduleService = userScheduleService;
 }
示例#7
0
 /// <summary>
 /// User Schedule Constructor
 /// </summary>
 /// <param name="userScheduleService"></param>
 /// <param name="carouselService"></param>
 public UserScheduleController(IUserScheduleService userScheduleService, ICarouselService carouselService)
 {
     _userSchedulerService = userScheduleService;
     _carouselService      = carouselService;
 }