コード例 #1
0
 public PageController(PageRepository pageRepo, IMapper mapper, CareerRepository careerRepo, SetupRepository setupRepo)
 {
     _careerRepo = careerRepo;
     _pageRepo   = pageRepo;
     _mapper     = mapper;
     _setupRepo  = setupRepo;
 }
コード例 #2
0
 public FooterViewComponent(GalleryRepository galleryRepo, NoticeRepository noticeRepo, SetupRepository setupRepo, PageCategoryRepository pageCategoryRepo)
 {
     _galleryRepo      = galleryRepo;
     _noticeRepo       = noticeRepo;
     _setupRepo        = setupRepo;
     _pageCategoryRepo = pageCategoryRepo;
 }
コード例 #3
0
 public NoticeController(NoticeRepository noticeRepo, EventRepository eventRepo, SetupRepository setupRepo, PaginatedMetaService paginatedMetaService, CareerRepository careerRepo)
 {
     _noticeRepo           = noticeRepo;
     _eventRepo            = eventRepo;
     _setupRepo            = setupRepo;
     _paginatedMetaService = paginatedMetaService;
     _careerRepo           = careerRepo;
 }
コード例 #4
0
 public MenuController(MenuRepository menuRepo, OrderService orderService, MenuCategoryRepository menuCategoryRepository, PaginatedMetaService paginatedMetaService, SetupRepository setupRepo, IMapper mapper)
 {
     _menuRepo               = menuRepo;
     _paginatedMetaService   = paginatedMetaService;
     _setupRepo              = setupRepo;
     _menuCategoryRepository = menuCategoryRepository;
     _mapper       = mapper;
     _orderService = orderService;
 }
コード例 #5
0
 public EventController(EventRepository eventRepo, NoticeRepository noticeRepo, PaginatedMetaService paginatedMetaService, SetupRepository setupRepo, CareerRepository careerRepo, TestimonialRepository testimonialRepo)
 {
     _eventRepo            = eventRepo;
     _noticeRepo           = noticeRepo;
     _paginatedMetaService = paginatedMetaService;
     _setupRepo            = setupRepo;
     _careerRepo           = careerRepo;
     _testimonialRepo      = testimonialRepo;
 }
コード例 #6
0
 public MenuController(SetupRepository setupRepository, MenuCategoryRepository menuCategoryRepository, MenuRepository menuRepo, MenuService menuService, PaginatedMetaService paginatedMetaService, IMapper mapper, FileHelper fileHelper)
 {
     _menuRepo               = menuRepo;
     _menuService            = menuService;
     _menuCategoryRepository = menuCategoryRepository;
     _paginatedMetaService   = paginatedMetaService;
     _mapper     = mapper;
     _fileHelper = fileHelper;
     _setupRepo  = setupRepository;
 }
コード例 #7
0
 public OrderControllers(SetupRepository setupRepository, OrderDetailService orderDetailService, IMapper mapper, PaginatedMetaService paginatedMetaService, OrderService orderService, OrderRepository orderRepository, OrderDetailRepository orderDetailRepository)
 {
     _orderDetailRepository = orderDetailRepository;
     _orderRepository       = orderRepository;
     _orderService          = orderService;
     _paginatedMetaService  = paginatedMetaService;
     _mapper             = mapper;
     _orderDetailService = orderDetailService;
     _setupRepo          = setupRepository;
 }
コード例 #8
0
 public HeaderViewComponent(EmailSenderService emailSenderService, GalleryRepository galleryRepo, AppointmentRepository appoitmentRepo, NoticeRepository noticeRepo, SetupRepository setupRepo, PageCategoryRepository pageCategoryRepo, EventRepository eventRepo, ServicesRepository serviceRepository)
 {
     _galleryRepo        = galleryRepo;
     _noticeRepo         = noticeRepo;
     _setupRepo          = setupRepo;
     _pageCategoryRepo   = pageCategoryRepo;
     _eventRepo          = eventRepo;
     _appointmentRepo    = appoitmentRepo;
     _serviceRepository  = serviceRepository;
     _emailSenderService = emailSenderService;
 }
コード例 #9
0
 public BlogController(BlogRepository blogRepo, BlogService blogService, BlogCommentService blogCommentService, BlogCommentRepository blogCommentRepo, IMapper mapper, PaginatedMetaService paginatedMetaService, EventRepository eventRepo, SetupRepository setupRepo, NoticeRepository noticeRepo)
 {
     _blogRepo             = blogRepo;
     _eventRepo            = eventRepo;
     _blogService          = blogService;
     _setupRepo            = setupRepo;
     _mapper               = mapper;
     _blogCommentRepo      = blogCommentRepo;
     _blogCommentService   = blogCommentService;
     _paginatedMetaService = paginatedMetaService;
     _noticeRepo           = noticeRepo;
 }
コード例 #10
0
 public HomeController(PartnersRepository partnersRepository, MembersRepository membersRepository, GalleryImageRepository galleryRepo, MenuRepository menuRepo, MenuCategoryRepository menuCategoryRepo, NoticeRepository noticeRepo, PageRepository pageRepo, CoursesRepository productRepo, IMapper mapper, SetupRepository setupRepo, EmailSenderService emailSenderService, TestimonialRepository testimonialRepo, BlogRepository blogRepo, EventRepository eventRepo, VideoRepository videoRepository, NewsRepository newsRepository, DoctorsRepository doctorsRepository, ServicesRepository servicesRepository, AppointmentService appointmentService, AppointmentRepository appointmentRepository, AppointmentMaker appointmentMaker)
 {
     _galleryRepo           = galleryRepo;
     _newsRepository        = newsRepository;
     _noticeRepo            = noticeRepo;
     _pageRepo              = pageRepo;
     _productRepo           = productRepo;
     _mapper                = mapper;
     _setupRepo             = setupRepo;
     _testimonialRepo       = testimonialRepo;
     _emailSenderService    = emailSenderService;
     _blogRepo              = blogRepo;
     _eventRepo             = eventRepo;
     _videoRepository       = videoRepository;
     _doctorsRepository     = doctorsRepository;
     _servicesRepository    = servicesRepository;
     _appointmentService    = appointmentService;
     _appointmentRepository = appointmentRepository;
     _appointmentMaker      = appointmentMaker;
     _menuRepo              = menuRepo;
     _menuCategoryRepo      = menuCategoryRepo;
     _membersRepository     = membersRepository;
     _partnersRepository    = partnersRepository;
 }
コード例 #11
0
 public SetupServiceImpl(TransactionManager transactionManager, SetupRepository setupRepo)
 {
     _setupRepo          = setupRepo;
     _transactionManager = transactionManager;
 }
コード例 #12
0
 public ContactController(SetupRepository setupRepo, EmailSenderService emailSenderService)
 {
     _setupRepo          = setupRepo;
     _emailSenderService = emailSenderService;
 }
コード例 #13
0
 public EmailSenderServiceImpl(ReceivedEmailMaker receivedEmailMaker, ReceivedEmailRepository receivedEmailRepo, SetupRepository setupRepo)
 {
     _receivedEmailMaker = receivedEmailMaker;
     _receivedEmailRepo  = receivedEmailRepo;
     _setupRepo          = setupRepo;
 }
コード例 #14
0
 public CareerController(CareerRepository careerRepo, SetupRepository setupRepo, PaginatedMetaService paginatedMetaService)
 {
     _careerRepo           = careerRepo;
     _setupRepo            = setupRepo;
     _paginatedMetaService = paginatedMetaService;
 }
コード例 #15
0
 public NewsController(NewsRepository newsRepository, SetupRepository setupRepository, PaginatedMetaService paginatedMetaService)
 {
     _newsRepository       = newsRepository;
     _paginatedMetaService = paginatedMetaService;
     _setupRepository      = setupRepository;
 }
コード例 #16
0
 public SetupController(FileHelper fileHelper, SetupRepository setupRepo, SetupService setupService)
 {
     _setupRepo    = setupRepo;
     _setupService = setupService;
     _fileHelper   = fileHelper;
 }
コード例 #17
0
 public ServicesController(ServicesRepository servicesRepository, SetupRepository setupRepository, PaginatedMetaService paginatedMetaService)
 {
     _servicesRepository   = servicesRepository;
     _paginatedMetaService = paginatedMetaService;
     _setupRepository      = setupRepository;
 }
コード例 #18
0
 public FaqController(FaqRepository faqRepository, SetupRepository setupRepository)
 {
     _faqRepository   = faqRepository;
     _setupRepository = setupRepository;
 }
コード例 #19
0
 public SidebarViewConponent(SetupRepository setupRepo)
 {
     _setupRepo = setupRepo;
 }
コード例 #20
0
 public MemberController(MembersRepository membersRepo, SetupRepository setupRepository, TestimonialRepository testimonialRepository)
 {
     _membersRepo     = membersRepo;
     _setupRepository = setupRepository;
     _testimonialRepo = testimonialRepository;
 }
コード例 #21
0
 public DoctorsController(DoctorsRepository doctorsRepository, SetupRepository setupRepository, TestimonialRepository testimonialRepository)
 {
     _doctorsRepository = doctorsRepository;
     _testimonialRepo   = testimonialRepository;
     _setupRepository   = setupRepository;
 }