Beispiel #1
0
 public HomeController(JotexDbContext context,
                       IMapper mapper,
                       ISectionRepository sectionRepository)
 {
     _mapper            = mapper;
     _context           = context;
     _sectionRepository = sectionRepository;
 }
Beispiel #2
0
 public BrandController(ISectionRepository sectionRepository,
                        IMapper mapper,
                        ICloudinaryService cloudinaryService,
                        IFileManager fileManager,
                        JotexDbContext context)
 {
     _sectionRepository = sectionRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
Beispiel #3
0
 public AgentController(ICaseStudyRepository caseStudyRepository,
                        IMapper mapper,
                        ICloudinaryService cloudinaryService,
                        IFileManager fileManager,
                        JotexDbContext context)
 {
     _caseStudyRepository = caseStudyRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
Beispiel #4
0
 public AboutUsController(IAboutCompanyRepository aboutCompanyRepository,
                          IMapper mapper,
                          ICloudinaryService cloudinaryService,
                          IFileManager fileManager,
                          JotexDbContext context)
 {
     _aboutCompanyRepository = aboutCompanyRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
Beispiel #5
0
 public BlogController(IBlogRepository blogRepository,
                       IMapper mapper,
                       ICloudinaryService cloudinaryService,
                       IFileManager fileManager,
                       JotexDbContext context,
                       IServiceRepository serviceRepository)
 {
     _blogRepository    = blogRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
     _serviceRepository = serviceRepository;
 }
 public AdminRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public TestimonialRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public ClaimSettlementRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public FaqRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public AwardsRepository(JotexDbContext context)
 {
     _context = context;
 }
 public SubscriptionRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #12
0
 public CaseStudiesController(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #13
0
 public LikeableAreaRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #14
0
 public ServicesController(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #15
0
 public BestServicesRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #16
0
 public AboutRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #17
0
 public CaseStudyRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #18
0
 public BlogRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #19
0
 public SliderRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #20
0
 public BlogCommentsRepository(JotexDbContext context)
 {
     _context = context;
 }
 public ServiceRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #22
0
 public ContentRepository(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #23
0
 public PagesController(JotexDbContext context)
 {
     _context = context;
 }
Beispiel #24
0
 public PageRepository(JotexDbContext context)
 {
     _context = context;
 }
 public CategoryyRepository(JotexDbContext context)
 {
     _context = context;
 }