Exemple #1
0
        public BaseAdminModelFactory(
            ICustomerActivityService customerActivityService,
            IStateProvinceService stateProvinceService,
            IStaticCacheManager cacheManager,
            IStoreService storeService,
            ITopicTemplateService topicTemplateService,
            IEmailAccountService emailAccountService,
            ICategoryService categoryService,
            ICategoryTemplateService categoryTemplateService, ICustomerService customerService, INewsPaperServices newsPaperServices,
            ISliderService sliderService, IGalleryService galleryService, IVideoService videoService)
        {
            this._customerActivityService = customerActivityService;
            this._stateProvinceService    = stateProvinceService;
            this._cacheManager            = cacheManager;
            this._storeService            = storeService;
            this._topicTemplateService    = topicTemplateService;
            _emailAccountService          = emailAccountService;
            _categoryService         = categoryService;
            _categoryTemplateService = categoryTemplateService;
            _customerService         = customerService;
            _newsPaperServices       = newsPaperServices;

            _sliderService  = sliderService;
            _galleryService = galleryService;
            _videoService   = videoService;
        }
 public EnewsPapersController(INewsPaperServices newsPaperServices,
                              INewsPaperModelFactory newsPaperModelFactory,
                              IEventPublisher eventPublisher,
                              IUrlRecordService urlRecordService,
                              ICustomerActivityService customerActivityService,
                              UserManager <ApplicationUser> userManager,
                              ICustomerService customerService, ApplicationDbContext applicationDbContext)
 {
     _newsPaperServices       = newsPaperServices;
     _newsPaperModelFactory   = newsPaperModelFactory;
     _eventPublisher          = eventPublisher;
     _urlRecordService        = urlRecordService;
     _customerActivityService = customerActivityService;
     _userManager             = userManager;
     _customerService         = customerService;
     _applicationDbContext    = applicationDbContext;
 }
Exemple #3
0
 public NewsPaperModelFactory(IBaseAdminModelFactory baseAdminModelFactory, INewsPaperServices newsPaperServices, IUrlRecordService urlRecordService)
 {
     _baseAdminModelFactory = baseAdminModelFactory;
     _newsPaperServices     = newsPaperServices;
     _urlRecordService      = urlRecordService;
 }