public CodeSamplesFilterController(ICommonDataService commonDataService, ITaxonomyService taxonomyService, IContentManager contentManager)
 {
     _commonDataService = commonDataService;
     _taxonomyService = taxonomyService;
     _contentManager = contentManager;
     Logger = NullLogger.Instance;
 }
        public SolutionsFilterController(
            IOrchardServices services,
            ISearchService searchService,
            IContentManager contentManager,
            ISiteService siteService,
            IShapeFactory shapeFactory,
            ICommonDataService commonDataService,
            ITaxonomyService taxonomyService)
        {
            Services = services;
            _searchService = searchService;
            _contentManager = contentManager;
            _siteService = siteService;
            _commonDataService = commonDataService;
            _taxonomyService = taxonomyService;

            T = NullLocalizer.Instance;
            Logger = NullLogger.Instance;
            Shape = shapeFactory;
        }
Example #3
0
 public SpgrHandler(ICommonDataService dataService, IHistoryService historyService)
 {
     _dataService    = dataService;
     _historyService = historyService;
 }
Example #4
0
 public InjectionsService(ICommonDataService dataService, IUserProvider userProvider, ITriggersService triggersService,
                          IValidationService validationService, IFieldDispatcherService fieldDispatcherService,
                          IFieldSetterFactory fieldSetterFactory, IAppConfigurationService configurationService)
     : base(dataService, userProvider, triggersService, validationService, fieldDispatcherService, fieldSetterFactory, configurationService)
 {
 }
Example #5
0
 public BackOfficeUserService(IConfiguration configuration, ICommonDataService commonDataService)
 {
     Configuration       = configuration;
     _commonDataService  = commonDataService;
     StateMedicalService = Configuration.GetValue <string>("StateMedicalService");
 }
Example #6
0
 public OnChangeDeliveryDate(ICommonDataService dataService) :
     base(dataService)
 {
     _dataService = dataService;
 }
Example #7
0
 public OnChangeTransportCompany(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
Example #8
0
 public BranchService(ICommonDataService dataService, IOperationFormListService formListService, LimsExchangeService limsExchangeService)
 {
     _dataService         = dataService;
     _formListService     = formListService;
     _limsExchangeService = limsExchangeService;
 }
 public MessageTypesController(ICommonDataService DataService, IConfiguration configuration, ISearchFilterSettingsService filterSettingsService, IMgsReportService msgReportService, IConverter converter,
                               IObjectMapper objectMapper, MessageService messageService, IAtuAddressService atuAddressService, ICommonDataService commonDataService, BackOfficeUserService backOfficeUserService, LicenseService licenseService, IPrlLicenseService prlLicenseService, IImlLicenseService imlLicenseService, ITrlLicenseService trlLicenseService, AppAssigneeService appAssigneeService)
     : base(DataService, configuration, filterSettingsService)
 {
     _objectMapper          = objectMapper;
     _messageService        = messageService;
     _converter             = converter;
     _msgReportService      = msgReportService;
     _atuAddressService     = atuAddressService;
     _commonDataService     = commonDataService;
     _backOfficeUserService = backOfficeUserService;
     _licenseService        = licenseService;
     _prlLicenseService     = prlLicenseService;
     _imlLicenseService     = imlLicenseService;
     _trlLicenseService     = trlLicenseService;
     _appAssigneeService    = appAssigneeService;
 }
Example #10
0
 public OperatorsController(ICommonDataService _ICommonDataService, IOperatorService _IOperatorService)
 {
     this._ICommonDataService = _ICommonDataService;
     this._IOperatorService   = _IOperatorService;
 }
Example #11
0
 public MessageController(ICommonDataService DataService, IConfiguration configuration, ISearchFilterSettingsService filterSettingsService)
     : base(DataService, configuration, filterSettingsService)
 {
 }
 public DeliveryAddressService(ICommonDataService dataService)
 {
     _dataService = dataService;
 }
 protected UpdateIntegratedBase(ICommonDataService dataService)
 {
     _dataService = dataService;
 }
Example #14
0
 public EntityStateHelper(ICommonDataService dataService, IDistributedCacheService cacheService)
 {
     DataService  = dataService;
     CacheService = cacheService;
 }
Example #15
0
 public AtuAddressService(ICommonDataService dataService)
 {
     _dataService = dataService;
 }
 public LoadingDepartureTimeHandler(ICommonDataService dataService, IHistoryService historyService)
 {
     _dataService    = dataService;
     _historyService = historyService;
 }
 public ShowMoreController(ICommonDataService commonDataService) {
     _commonDataService = commonDataService;
 }
Example #18
0
 public AuditService(ICommonDataService dataService)
 {
     DataService = dataService;
 }
Example #19
0
 /// <summary>Constructs permissions controller class</summary>
 /// <param name="svc">Membership service injection</param>
 /// <param name="mapper">Mapper instance</param>
 /// <param name="dataService">Data Service</param>
 public PermissionsController(IMembershipService svc, IMappingEngine mapper, ICommonDataService dataService)
 {
     this.service     = svc;
     this.mapper      = mapper;
     this.dataService = dataService;
 }
Example #20
0
 public ShippingWarehouseNameHandler(ICommonDataService dataService, IHistoryService historyService)
 {
     _dataService    = dataService;
     _historyService = historyService;
 }
Example #21
0
 public OnChangeVehicleTypeId(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
Example #22
0
 public ReportService(ICommonDataService dataService, IUserProvider userProvider)
 {
     _dataService  = dataService;
     _userProvider = userProvider;
 }
Example #23
0
 public AppTypesController(ICommonDataService dataService, IUserInfoService userInfoService, LicenseService licenseService)
 {
     _dataService     = dataService;
     _userInfoService = userInfoService;
     _licenseService  = licenseService;
 }
Example #24
0
 public BranchController(ICommonDataService dataService, IConfiguration configuration,
                         ISearchFilterSettingsService searchFilterSettingsService, IBranchService branchService) : base(dataService,
                                                                                                                        configuration, searchFilterSettingsService)
 {
     _branchService = branchService;
 }
Example #25
0
 public AccountConfigController(ICommonDataService commonDataService
                                , ICostAccountConfigService costAccountConfigService)
 {
     _commonDataService        = commonDataService;
     _costAccountConfigService = costAccountConfigService;
 }
Example #26
0
 public FileStoreController(IObjectMapper objectMapper, ICommonDataService commonDataService) : base()
 {
     _objectMapper      = objectMapper;
     _commonDataService = commonDataService;
 }
 public WarehouseService(ICommonDataService dataService)
 {
     _dataService = dataService;
 }
Example #28
0
 public TrlAppAltController(ICommonDataService dataService, IConfiguration configuration, ISearchFilterSettingsService searchFilterSettingsService, ICommonDataService commonDataService, IEntityStateHelper entityStateHelper, TrlApplicationAltService trlApplicationAltService) : base(dataService, configuration, searchFilterSettingsService)
 {
     _commonDataService        = commonDataService;
     _entityStateHelper        = entityStateHelper;
     _trlApplicationAltService = trlApplicationAltService;
 }
 public LoadingArrivalTimeHandler(ICommonDataService dataService, IHistoryService historyService)
 {
     _dataService    = dataService;
     _historyService = historyService;
 }
Example #30
0
 public PrlVerificationController(ICommonDataService dataService)
 {
     _dataService = dataService;
 }
Example #31
0
 public ShippingCalculationService(ICommonDataService dataService)
 {
     _dataService = dataService;
 }
Example #32
0
 public PrlContractorController(ICommonDataService dataService, IEntityStateHelper entityStateHelper)
     : base()
 {
     _dataService       = dataService;
     _entityStateHelper = entityStateHelper;
 }
 public OrderNumberHandler(IUserProvider userProvider, ICommonDataService dataService)
 {
     _userProvider = userProvider;
     _dataService  = dataService;
 }
 public FeedbackController(
     ICommonDataService commonDataService) {
     _commonDataService = commonDataService;
 }