public RateController(IRateService rateService, Core.IWorkContext workContext, IHostingEnvironment env) { this._rateService = rateService; this._workContext = workContext; this._env = env; }
public NotificationController(ICustomerService customerService, INotificationService notificationService, Core.IWorkContext workContext, IHostingEnvironment env) { this._customerService = customerService; this._notificationService = notificationService; this._workContext = workContext; this._env = env; }
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; }
public SettingsController(ISettingService settingService, Core.IWorkContext workContext, IHostingEnvironment env) { this._settingService = settingService; this._workContext = workContext; this._env = env; }
public SubCategoriesController(ISubCategoryService subCategory, ICategoryService category, Core.IWorkContext workContext, IHostingEnvironment env) { this._category = category; this._subCategory = subCategory; this._workContext = workContext; this._env = env; }
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; }
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; }
public AddressController( IUrlHelper urlHelper, IPostService postService, Core.IWorkContext workContext, IHostingEnvironment env ) { this._urlHelper = urlHelper; this._postService = postService; this._workContext = workContext; this._env = env; }
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; }
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(); }
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(); }
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; }
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(); }
public UserController(Core.IWorkContext workContext) { this._workContext = workContext; }
public DashboardController(Core.IWorkContext workContext, IHostingEnvironment env) { this._workContext = workContext; this._env = env; }
public BlackListController(IBlackListService blackListService, Core.IWorkContext workContext, IEventPublisher env) { this._blackListService = blackListService; this._workContext = workContext; this._env = env; }
public CityController(ICityService cityService, Core.IWorkContext workContext, IHostingEnvironment env) { this._cityService = cityService; this._workContext = workContext; this._env = env; }
public CategoryController(ICategoryService categoryService, Core.IWorkContext workContext, IEventPublisher env) { this._categoryService = categoryService; this._workContext = workContext; this._env = env; }
public CustomersService(IRepository <Customer> customerService, Core.IWorkContext workContext, IHostingEnvironment env) { _customerRepository = customerService; _workContext = workContext; _env = env; }