Пример #1
0
 public AssetControlWhereClauseProvider(R0017WhereClauseProvider rooR0017WhereClauseProvider, IContextLookuper contextLookuper, IHlagLocationManager locationManager)
 {
     _rooR0017WhereClauseProvider = rooR0017WhereClauseProvider;
     _contextLookuper             = contextLookuper;
     _locationManager             = locationManager;
     Log.Debug("init log");
 }
Пример #2
0
 public HlagLocationManager(SWDBHibernateDAO dao, MaximoHibernateDAO maxDAO, EntityRepository repository, IContextLookuper contextLookuper)
 {
     _dao             = dao;
     _repository      = repository;
     _personEntity    = MetadataProvider.Entity("person");
     _contextLookuper = contextLookuper;
     _maxDAO          = maxDAO;
 }
Пример #3
0
 public ApplicationController(DataController dataController, ExcelUtil excelUtil, IConfigurationFacade facade, I18NResolver i18NResolver, IContextLookuper contextLookuper)
 {
     _dataController  = dataController;
     _excelUtil       = excelUtil;
     _facade          = facade;
     _i18NResolver    = i18NResolver;
     _contextLookuper = contextLookuper;
 }
Пример #4
0
 public HapagChangeDataSet(IHlagLocationManager locationManager, EntityRepository entityRepository, MaximoHibernateDAO maxDao,
                           ChangeGridUnionQueryGenerator changeGridUnionQueryGenerator, ChangeDetailUnionQueryGenerator changeDetailGenerator, IContextLookuper context, ChangeWhereClauseProvider changeWhereClauseProvider)
     : base(locationManager, entityRepository, maxDao)
 {
     _changeGridUnionQueryGenerator = changeGridUnionQueryGenerator;
     _changeDetailGenerator         = changeDetailGenerator;
     _context = context;
     _changeWhereClauseProvider = changeWhereClauseProvider;
 }
Пример #5
0
        public ExcelUtil(I18NResolver i18NResolver, IContextLookuper contextLookuper)
        {
            _i18NResolver    = i18NResolver;
            _contextLookuper = contextLookuper;
            // setup style dictionary for back colors
            // 2 = red, 3 = green, 4 = yellow, 5 = orange, 6 = blue, 7 = white
            _cellStyleDictionary = new Dictionary <string, string> {
                { "ACC_CAT", "6" },
                { "APPR", "6" },
                { "ASSESSES", "6" },
                { "AUTH", "6" },
                { "AUTHORIZED", "6" },
                { "CAN", "2" },
                { "CANCELLED", "2" },
                { "CLOSE", "3" },
                { "CLOSED", "3" },
                { "COMP", "3" },
                { "DRAFT", "7" },
                { "FAIL", "2" },
                { "FAILED", "2" },
                { "FAILPIR", "2" },
                { "HISTEDIT", "3" },
                { "HOLDINPRG", "6" },
                { "IMPL", "3" },
                { "IMPLEMENTED", "3" },
                { "INFOPEND", "6" },
                { "INPRG", "4" },
                { "INPROG", "4" },
                { "NEW", "5" },
                { "NOTREQ", "2" },
                { "null", "4" },
                { "PENDING", "4" },
                { "PENDAPPR", "6" },
                { "PLANNED", "6" },
                { "QUEUED", "4" },
                { "REJECTED", "2" },
                { "RCACOMP", "6" },
                { "RESOLVCONF", "3" },
                { "RESOLVED", "6" },
                { "REVIEW", "3" },
                { "SCHED", "6" },
                { "SLAHOLD", "6" },
                { "WAPPR", "5" },
                { "WMATL", "6" },
                { "WSCH", "5" }
            };

            _changeCellStyleDictionary = new Dictionary <string, string> {
                { "ACC_CAT", "6" }
            };
        }
Пример #6
0
 public CompositionExpander(IContextLookuper contextLookuper, EntityRepository entityRepository)
 {
     _contextLookuper  = contextLookuper;
     _entityRepository = entityRepository;
 }
Пример #7
0
 public DataController(I18NResolver i18NResolver, IContextLookuper contextLookuper, CompositionExpander compositionExpander)
 {
     _i18NResolver       = i18NResolver;
     ContextLookuper     = contextLookuper;
     COMPOSITIONExpander = compositionExpander;
 }
Пример #8
0
 public ExcelController(IContextLookuper contextLookuper, DataController dataController, ExcelUtil excelUtil, AssetRamControlWhereClauseProvider assetRamControlWhereClauseProvider)
 {
     _contextLookuper = contextLookuper;
     _dataController  = dataController;
     _excelUtil       = excelUtil;
 }
Пример #9
0
 public R0017WhereClauseProvider(HlagLocationManager locationManager, IContextLookuper contextLookuper)
 {
     _locationManager = locationManager;
     _contextLookuper = contextLookuper;
 }
Пример #10
0
 public ExtendedDataController(I18NResolver i18NResolver, IContextLookuper lookuper, CompositionExpander expander)
     : base(i18NResolver, lookuper, expander)
 {
 }
Пример #11
0
 public ComWhereClauseProvider(IContextLookuper contextLookuper)
 {
     _contextLookuper = contextLookuper;
 }
 public DashboardWhereClauseProvider(R0017WhereClauseProvider r0017WhereClauseProvider, IContextLookuper contextLookuper, IHlagLocationManager iHlagLocationManager)
 {
     _r0017WhereClauseProvider = r0017WhereClauseProvider;
     _contextLookuper          = contextLookuper;
     _iHlagLocationManager     = iHlagLocationManager;
 }
 public ChangeDetailUnionQueryGenerator(ChangeWhereClauseProvider changeWhereClauseProvider, IContextLookuper contextLookuper)
 {
     _changeWhereClauseProvider = changeWhereClauseProvider;
     _contextLookuper           = contextLookuper;
 }
 public HapagServiceRequestDataSet(IHlagLocationManager locationManager, EntityRepository entityRepository, MaximoHibernateDAO maxDao, IContextLookuper contextLookuper) : base(locationManager, entityRepository, maxDao)
 {
     _contextLookuper = contextLookuper;
 }
Пример #15
0
 public ConfigurationFacade(SWDBHibernateDAO dao, ConfigurationService configService, IContextLookuper contextLookuper)
 {
     _dao             = dao;
     _configService   = configService;
     _contextLookuper = contextLookuper;
 }
Пример #16
0
 public WhereClauseFacade(ConfigurationService configurationService, IContextLookuper contextLookuper, SWDBHibernateDAO dao)
 {
     _configurationService = configurationService;
     _contextLookuper      = contextLookuper;
     _dao = dao;
 }