Ejemplo n.º 1
0
        public MessageTokenProvider(ILanguageService languageService,
                                    ILocalizationService localizationService,
                                    IDateTimeHelper dateTimeHelper,
                                    ICurrencyService currencyService,
                                    IWorkContext workContext,
                                    IApplicationService applicationService,
                                    ISysContext sysContext,
                                    IAddressAttributeFormatter addressAttributeFormatter,
                                    IUserAttributeFormatter userAttributeFormatter,
                                    MessageTemplatesSettings templatesSettings,
                                    CatalogSettings catalogSettings,
                                    CurrencySettings currencySettings,
                                    IEventPublisher eventPublisher,
                                    ApplicationInformationSettings applicationInformationSettings)
        {
            this._languageService           = languageService;
            this._localizationService       = localizationService;
            this._dateTimeHelper            = dateTimeHelper;
            this._currencyService           = currencyService;
            this._workContext               = workContext;
            this._addressAttributeFormatter = addressAttributeFormatter;
            this._userAttributeFormatter    = userAttributeFormatter;
            this._applicationService        = applicationService;
            this._sysContext = sysContext;

            this._templatesSettings = templatesSettings;
            this._catalogSettings   = catalogSettings;
            this._currencySettings  = currencySettings;
            this._eventPublisher    = eventPublisher;
            this._applicationInformationSettings = applicationInformationSettings;
        }
Ejemplo n.º 2
0
 public WebWorkContext(HttpContextBase httpContext,
                       IUserService customerService,
                       IVendorService vendorService,
                       ISysContext storeContext,
                       IAuthenticationService authenticationService,
                       ILanguageService languageService,
                       ICurrencyService currencyService,
                       IGenericAttributeService genericAttributeService,
                       TaxSettings taxSettings,
                       CurrencySettings currencySettings,
                       LocalizationSettings localizationSettings,
                       IUserAgentHelper userAgentHelper,
                       IApplicationMappingService storeMappingService)
 {
     this._httpContext             = httpContext;
     this._customerService         = customerService;
     this._vendorService           = vendorService;
     this._sysContext              = storeContext;
     this._authenticationService   = authenticationService;
     this._languageService         = languageService;
     this._currencyService         = currencyService;
     this._genericAttributeService = genericAttributeService;
     this._taxSettings             = taxSettings;
     this._currencySettings        = currencySettings;
     this._localizationSettings    = localizationSettings;
     this._userAgentHelper         = userAgentHelper;
     this._storeMappingService     = storeMappingService;
 }
Ejemplo n.º 3
0
 public WorkflowMessageService(IMessageTemplateService messageTemplateService,
                               IQueuedEmailService queuedEmailService,
                               ILanguageService languageService,
                               ITokenizer tokenizer,
                               IEmailAccountService emailAccountService,
                               IMessageTokenProvider messageTokenProvider,
                               IApplicationService applicationService,
                               ISysContext sysContext,
                               CommonSettings commonSettings,
                               EmailAccountSettings emailAccountSettings,
                               IEventPublisher eventPublisher,
                               HttpContextBase httpContext)
 {
     this._messageTemplateService = messageTemplateService;
     this._queuedEmailService     = queuedEmailService;
     this._languageService        = languageService;
     this._tokenizer            = tokenizer;
     this._emailAccountService  = emailAccountService;
     this._messageTokenProvider = messageTokenProvider;
     this._applicationService   = applicationService;
     this._sysContext           = sysContext;
     this._commonSettings       = commonSettings;
     this._emailAccountSettings = emailAccountSettings;
     this._eventPublisher       = eventPublisher;
     this._httpContext          = httpContext;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="cacheManager">Cache manager</param>
 /// <param name="applicationContext">Application context</param>
 /// <param name="applicationMappingRepository">Application mapping repository</param>
 /// <param name="catalogSettings">Catalog settings</param>
 /// <param name="eventPublisher">Event publisher</param>
 public ApplicationMappingService(ICacheManager cacheManager,
                                  ISysContext sysContext,
                                  IRepository <ApplicationMapping> applicationMappingRepository,
                                  IEventPublisher eventPublisher)
 {
     this._cacheManager = cacheManager;
     this._sysContext   = sysContext;
     this._applicationMappingRepository = applicationMappingRepository;
     this._eventPublisher = eventPublisher;
 }
Ejemplo n.º 5
0
 public SitemapGenerator(ISysContext sysContext,
                         IWebHelper webHelper,
                         CommonSettings commonSettings,
                         SecuritySettings securitySettings)
 {
     this._sysContext       = sysContext;
     this._webHelper        = webHelper;
     this._commonSettings   = commonSettings;
     this._securitySettings = securitySettings;
 }
Ejemplo n.º 6
0
 public ThemeContext(IWorkContext workContext,
                     ISysContext sysContext,
                     IGenericAttributeService genericAttributeService,
                     ApplicationInformationSettings applicationInformationSettings,
                     IThemeProvider themeProvider)
 {
     this._workContext                    = workContext;
     this._sysContext                     = sysContext;
     this._genericAttributeService        = genericAttributeService;
     this._applicationInformationSettings = applicationInformationSettings;
     this._themeProvider                  = themeProvider;
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="cacheManager">Cache manager</param>
 /// <param name="countryRepository">Country repository</param>
 /// <param name="ApplicationMappingRepository">Application mapping repository</param>
 /// <param name="sysContext">Sys context</param>
 /// <param name="catalogSettings">Catalog settings</param>
 /// <param name="eventPublisher">Event published</param>
 public CountryService(ICacheManager cacheManager,
                       IRepository <Country> countryRepository,
                       IRepository <ApplicationMapping> applicationMappingRepository,
                       ISysContext sysContext,
                       CatalogSettings catalogSettings,
                       IEventPublisher eventPublisher)
 {
     this._cacheManager                 = cacheManager;
     this._countryRepository            = countryRepository;
     this._applicationMappingRepository = applicationMappingRepository;
     this._sysContext      = sysContext;
     this._catalogSettings = catalogSettings;
     this._eventPublisher  = eventPublisher;
 }
Ejemplo n.º 8
0
 public JobPositionService(ISysContext context) : base(context.JobPositionRepository)
 {
     _context = context;
 }
 public MaterialReceivingVoucherService(ISysContext context) : base(context.MaterialReceivingVoucherRepository)
 {
     _context = context;
 }
Ejemplo n.º 10
0
 public StudentService(ISysContext context) : base(context.StudentRepository)
 {
     _context = context;
 }
Ejemplo n.º 11
0
 public MaterialBarcodeService(ISysContext context) : base(context.MaterialBarcodeRepository)
 {
     _context = context;
 }
Ejemplo n.º 12
0
 public CompanyService(ISysContext context) : base(context.CompanyRepository)
 {
     _context = context;
 }
Ejemplo n.º 13
0
 public DashboardService(ISysContext context)
 {
     _context = context;
 }
Ejemplo n.º 14
0
 public EmployeeCourseService(ISysContext context) : base(context.EmployeeCourseRepository)
 {
     _context = context;
 }
Ejemplo n.º 15
0
 public MaterialGroupTypeService(ISysContext context) : base(context.MaterialGroupTypeRepository)
 {
     _context = context;
 }
Ejemplo n.º 16
0
 public DepartmentService(ISysContext context) : base(context.DepartmentRepository)
 {
     _context = context;
 }
Ejemplo n.º 17
0
 public SupplierService(ISysContext context) : base(context.SupplierRepository)
 {
     _context = context;
 }
Ejemplo n.º 18
0
 public CourseService(ISysContext context) : base(context.CourseRepository)
 {
     _context = context;
 }
Ejemplo n.º 19
0
 public CustomerService(ISysContext context) : base(context.CustomerRepository)
 {
     _context = context;
 }
Ejemplo n.º 20
0
 public ProductService(ISysContext context) : base(context.ProductRepository)
 {
     _context = context;
 }
Ejemplo n.º 21
0
 public MajorService(ISysContext context) : base(context.MajorRepository)
 {
     _context = context;
 }
Ejemplo n.º 22
0
 public UnitService(ISysContext context) : base(context.UnitRepository)
 {
     _context = context;
 }
Ejemplo n.º 23
0
 public SysTokenService(ISysContext context)
 {
     _context = context;
 }
Ejemplo n.º 24
0
 public LogService(ISysContext context) : base(context.LogRepository)
 {
 }
Ejemplo n.º 25
0
 public KeepAliveTask(ISysContext applicationContext)
 {
     this._applicationContext = applicationContext;
 }
Ejemplo n.º 26
0
 public UserService(ISysContext context) : base(context.UserRepository)
 {
     _context = context;
 }
Ejemplo n.º 27
0
 public FacutlyService(ISysContext context) : base(context.FacutlyRepository)
 {
     _context = context;
 }
Ejemplo n.º 28
0
 public JobTitleService(ISysContext context) : base(context.JobTitleRepository)
 {
     _context = context;
 }
 public MaterialDeliveryVoucherService(ISysContext context) : base(context.MaterialDeliveryVoucherRepository)
 {
     _context = context;
 }
 public MaterialSubgroupService(ISysContext context) : base(context.MaterialSubgroupRepository)
 {
     _context = context;
 }