示例#1
0
 public AboutUsController(IAboutCompanyRepository aboutCompanyRepository,
                          IMapper mapper,
                          ICloudinaryService cloudinaryService,
                          IFileManager fileManager,
                          JotexDbContext context)
 {
     _aboutCompanyRepository = aboutCompanyRepository;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
     _fileManager       = fileManager;
     _context           = context;
 }
 public AboutSectionViewComponent(IMapper mapper,
                                  IAboutCompanyRepository aboutCompanyRepository)
 {
     _mapper = mapper;
     _aboutCompanyRepository = aboutCompanyRepository;
 }
示例#3
0
 public AboutusController(IAboutCompanyRepository companyRepository,
                          IMapper mapper)
 {
     _companyRepository = companyRepository;
     _mapper            = mapper;
 }