Esempio n. 1
0
        public RateController(IRateService rateService, Core.IWorkContext workContext, IHostingEnvironment env)
        {
            this._rateService = rateService;

            this._workContext = workContext;
            this._env         = env;
        }
Esempio n. 2
0
 public NotificationController(ICustomerService customerService, INotificationService notificationService, Core.IWorkContext workContext, IHostingEnvironment env)
 {
     this._customerService     = customerService;
     this._notificationService = notificationService;
     this._workContext         = workContext;
     this._env = env;
 }
Esempio n. 3
0
 public DashboardConsultantController(IPostService postService, Core.IWorkContext workContext, IHostingEnvironment env, ICustomerService customer)
 {
     this._postService = postService;
     this._workContext = workContext;
     this._env         = env;
     this._customer    = customer;
 }
 public CustomerController(ICustomerService customerService, Core.IWorkContext workContext, IHostingEnvironment env, IPostService postService)
 {
     this._customerService = customerService;
     this._postService     = postService;
     this._workContext     = workContext;
     this._env             = env;
 }
Esempio n. 5
0
        public SettingsController(ISettingService settingService, Core.IWorkContext workContext, IHostingEnvironment env)
        {
            this._settingService = settingService;

            this._workContext = workContext;
            this._env         = env;
        }
Esempio n. 6
0
 public SubCategoriesController(ISubCategoryService subCategory, ICategoryService category, Core.IWorkContext workContext, IHostingEnvironment env)
 {
     this._category    = category;
     this._subCategory = subCategory;
     this._workContext = workContext;
     this._env         = env;
 }
Esempio n. 7
0
 public PostController(IPostService postService, ICommentService commentService, Core.IWorkContext workContext, IHostingEnvironment env, ICustomerService customer)
 {
     this._postService    = postService;
     this._commentService = commentService;
     this._workContext    = workContext;
     this._env            = env;
     this._customer       = customer;
 }
 public CategoriesController(ICategoryService category, Core.IWorkContext workContext, IHostingEnvironment env, ISubCategoryService subCategory, IPostService post)
 {
     this._category    = category;
     this._workContext = workContext;
     this._env         = env;
     this._subCategory = subCategory;
     this._post        = post;
 }
Esempio n. 9
0
 public NotificationController(Core.IWorkContext workContext, IRateSrevice _rateRepository,
                               INotificationService _notificationsService,
                               IBlackListService _blackListService, IPostService _postService, ICustomerService _customerContext)
 {
     this._workContext          = workContext;
     this._notificationsService = _notificationsService;
     this._rateRepository       = _rateRepository;
     this._customerContext      = _customerContext;
     this._postService          = _postService;
     this._blackListService     = _blackListService;
 }
Esempio n. 10
0
 public AddressController(
     IUrlHelper urlHelper,
     IPostService postService,
     Core.IWorkContext workContext,
     IHostingEnvironment env
     )
 {
     this._urlHelper   = urlHelper;
     this._postService = postService;
     this._workContext = workContext;
     this._env         = env;
 }
Esempio n. 11
0
 public FollowController(Core.IWorkContext workContext,
                         IRateSrevice _rateRepository, ICategoryService _categoryRepository, IFollowService _followRepository,
                         IBlackListService _blackListService, IPostService _postService, ICustomerService _customerContext)
 {
     this._workContext        = workContext;
     this._categoryRepository = _categoryRepository;
     this._rateRepository     = _rateRepository;
     this._customerContext    = _customerContext;
     this._postService        = _postService;
     this._followRepository   = _followRepository;
     this._blackListService   = _blackListService;
 }
Esempio n. 12
0
        public PaymentController(Core.IWorkContext workContext, IRateSrevice _rateRepository, ISettingService settingService,
                                 IPaymentService _paymentService,
                                 IBlackListService _blackListService, IPostService _postService, ICustomerService _customerContext)
        {
            settingService         = settingService;
            this._paymentService   = _paymentService;
            this._workContext      = workContext;
            this._rateRepository   = _rateRepository;
            this._customerContext  = _customerContext;
            this._postService      = _postService;
            this._blackListService = _blackListService;

            Settings = settingService.GetSettings();
        }
Esempio n. 13
0
 public UserController(Core.IWorkContext workContext, IRateSrevice _rateRepository, IFollowService _followRepository, IPaymentService _paymentRepository,
                       IBlackListService _blackListService, ICustomerServicesService _customerServiceContext, IPostService _postService, ICustomerService _customerContext, ISettingService _settingRepository, INotificationService _notificationService)
 {
     this._notificationService    = _notificationService;
     this._paymentRepository      = _paymentRepository;
     this._settingRepository      = _settingRepository;
     this._followRepository       = _followRepository;
     this._workContext            = workContext;
     this._rateRepository         = _rateRepository;
     this._customerContext        = _customerContext;
     this._postService            = _postService;
     this._blackListService       = _blackListService;
     this._customerServiceContext = _customerServiceContext;
     Settings     = _settingRepository.GetSettings();
     PagingParams = new PagingParams();
 }
Esempio n. 14
0
 public MessageController(
     IUrlHelper urlHelper,
     IPostService postService,
     ICustomerService _cusService,
     IMessageService _messageService,
     Core.IWorkContext workContext,
     IHostingEnvironment env
     )
 {
     this._cusService     = _cusService;
     this._urlHelper      = urlHelper;
     this._postService    = postService;
     this._messageService = _messageService;
     this._workContext    = workContext;
     this._env            = env;
 }
Esempio n. 15
0
 public CommentController(
     IUrlHelper urlHelper,
     INotificationService _notificationService,
     IPostService postService,
     Core.IWorkContext workContext,
     IHostingEnvironment env,
     ICommentService commentService
     )
 {
     this._urlHelper           = urlHelper;
     this._notificationService = _notificationService;
     this._postService         = postService;
     this._workContext         = workContext;
     this._env            = env;
     this._commentService = commentService;
 }
 public ConsultantHomeController(
     ICategoryService categoryService,
     IUrlHelper urlHelper,
     IPostService postService,
     Core.IWorkContext workContext,
     IHostingEnvironment env,
     ICommentService commentService,
     ISubCategoryService subCategoryService
     )
 {
     this._categoryService    = categoryService;
     this._urlHelper          = urlHelper;
     this._postService        = postService;
     this._workContext        = workContext;
     this._env                = env;
     this._commentService     = commentService;
     this._subCategoryService = subCategoryService;
 }
        public HaragHomeController(
            ICategoryService categoryService,
            IUrlHelper urlHelper,
            IPostService postService,
            Core.IWorkContext workContext,
            IHostingEnvironment env,
            ICommentService commentService,
            ISubCategoryService subCategoryService,
            ISettingService settingService

            )
        {
            this._categoryService    = categoryService;
            this._urlHelper          = urlHelper;
            this._postService        = postService;
            this._workContext        = workContext;
            this._env                = env;
            this._commentService     = commentService;
            this._subCategoryService = subCategoryService;
            SettingsModel            = settingService.GetSettings();
        }
Esempio n. 18
0
 public UserController(Core.IWorkContext workContext)
 {
     this._workContext = workContext;
 }
 public DashboardController(Core.IWorkContext workContext, IHostingEnvironment env)
 {
     this._workContext = workContext;
     this._env         = env;
 }
Esempio n. 20
0
 public BlackListController(IBlackListService blackListService, Core.IWorkContext workContext, IEventPublisher env)
 {
     this._blackListService = blackListService;
     this._workContext      = workContext;
     this._env = env;
 }
Esempio n. 21
0
 public CityController(ICityService cityService, Core.IWorkContext workContext, IHostingEnvironment env)
 {
     this._cityService = cityService;
     this._workContext = workContext;
     this._env         = env;
 }
Esempio n. 22
0
 public CategoryController(ICategoryService categoryService, Core.IWorkContext workContext, IEventPublisher env)
 {
     this._categoryService = categoryService;
     this._workContext     = workContext;
     this._env             = env;
 }
Esempio n. 23
0
 public CustomersService(IRepository <Customer> customerService, Core.IWorkContext workContext, IHostingEnvironment env)
 {
     _customerRepository = customerService;
     _workContext        = workContext;
     _env = env;
 }