public ClientTestimonialsController(ISettingService _settingService,
                                     IUrlService _urlService,
                                     IClietTestimonialsService _testimonialsService,
                                     ISocialNetworkService _socialNetworkService,
                                     IMediaStorageService _mediaStorageService,
                                     ICacheManager _cacheManager)
 {
     settingService       = _settingService;
     urlService           = _urlService;
     testimonialsService  = _testimonialsService;
     socialNetworkService = _socialNetworkService;
     mediaStorageService  = _mediaStorageService;
     cacheManager         = _cacheManager;
 }
Example #2
0
 public RoleController(ISettingService _settingService,
                       IPostService _postService,
                       IPortfolioService _portfolioService,
                       ICategoryService _categoryService,
                       IPortfolioCategoryService _portfolioCategoryService,
                       IUrlService _urlService,
                       ITeamMemberService _teamMemberService,
                       IClietTestimonialsService _testimonialsService,
                       ISocialNetworkService _socialNetworkService,
                       IMediaStorageService _mediaStorageService,
                       IPostTagService _postTagService,
                       ICacheManager _cacheManager,
                       IJobService _jobService,
                       IJobCategoryService _jobCategoryService,
                       ISubscriberService _subscriberService,
                       IApplyJobService _applyJobService,
                       IContactService _contactService)
 {
     db = new DataContext();
 }
Example #3
0
 public PortfolioController(ISettingService _settingService,
                            IPostService _postService,
                            IPortfolioService _portfolioService,
                            ICategoryService _categoryService,
                            IPortfolioCategoryService _portfolioCategoryService,
                            IUrlService _urlService,
                            ITeamMemberService _teamMemberService,
                            IClietTestimonialsService _testimonialsService,
                            ISocialNetworkService _socialNetworkService,
                            IMediaStorageService _mediaStorageService,
                            IPostTagService _postTagService,
                            ICacheManager _cacheManager,
                            IJobService _jobService,
                            IJobCategoryService _jobCategoryService,
                            ISubscriberService _subscriberService,
                            IApplyJobService _applyJobService,
                            IContactService _contactService)
 {
     settingService           = _settingService;
     portfolioService         = _portfolioService;
     postService              = _postService;
     categoryService          = _categoryService;
     urlService               = _urlService;
     teamMemberService        = _teamMemberService;
     testimonialsService      = _testimonialsService;
     socialNetworkService     = _socialNetworkService;
     mediaStorageService      = _mediaStorageService;
     postTagService           = _postTagService;
     portfolioCategoryService = _portfolioCategoryService;
     cacheManager             = _cacheManager;
     jobService               = _jobService;
     jobCategoryService       = _jobCategoryService;
     subscriberService        = _subscriberService;
     applyJobService          = _applyJobService;
     contactService           = _contactService;
 }
 public TestimonialsBuilder(HtmlHelper htmlHelper, ClientTestimonials model)
     : base(htmlHelper, model)
 {
     testimonialsService = Engine.Resolve <IClietTestimonialsService>();
     mediaStorageService = Engine.Resolve <IMediaStorageService>();
 }