Пример #1
0
 public HomeController(JotexDbContext context,
                       IMapper mapper,
                       ISectionRepository sectionRepository)
 {
     _mapper            = mapper;
     _context           = context;
     _sectionRepository = sectionRepository;
 }
Пример #2
0
 public BrandController(ISectionRepository sectionRepository,
                        IMapper mapper,
                        ICloudinaryService cloudinaryService,
                        IFileManager fileManager,
                        JotexDbContext context)
 {
     _sectionRepository = sectionRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
Пример #3
0
 public AgentController(ICaseStudyRepository caseStudyRepository,
                        IMapper mapper,
                        ICloudinaryService cloudinaryService,
                        IFileManager fileManager,
                        JotexDbContext context)
 {
     _caseStudyRepository = caseStudyRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
Пример #4
0
 public AboutUsController(IAboutCompanyRepository aboutCompanyRepository,
                          IMapper mapper,
                          ICloudinaryService cloudinaryService,
                          IFileManager fileManager,
                          JotexDbContext context)
 {
     _aboutCompanyRepository = aboutCompanyRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
Пример #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;
 }
Пример #7
0
 public TestimonialRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #8
0
 public ClaimSettlementRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #9
0
 public FaqRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #10
0
 public AwardsRepository(JotexDbContext context)
 {
     _context = context;
 }
 public SubscriptionRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #12
0
 public CaseStudiesController(JotexDbContext context)
 {
     _context = context;
 }
Пример #13
0
 public LikeableAreaRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #14
0
 public ServicesController(JotexDbContext context)
 {
     _context = context;
 }
Пример #15
0
 public BestServicesRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #16
0
 public AboutRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #17
0
 public CaseStudyRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #18
0
 public BlogRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #19
0
 public SliderRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #20
0
 public BlogCommentsRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #21
0
 public ServiceRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #22
0
 public ContentRepository(JotexDbContext context)
 {
     _context = context;
 }
Пример #23
0
 public PagesController(JotexDbContext context)
 {
     _context = context;
 }
Пример #24
0
 public PageRepository(JotexDbContext context)
 {
     _context = context;
 }
 public CategoryyRepository(JotexDbContext context)
 {
     _context = context;
 }