Beispiel #1
0
 public StringMapUpdater(IAppContext appContext
                         , IStringMapRepository stringMapRepository
                         , ILocalizedLabelService localizedLabelService)
 {
     _appContext            = appContext;
     _stringMapRepository   = stringMapRepository;
     _localizedLabelService = localizedLabelService;
 }
Beispiel #2
0
 public ChartRepository(IDbContext dbContext
                        , IAttributeRepository attributeRepository
                        , IStringMapRepository stringMapRepository
                        , IOptionSetDetailRepository optionSetDetailRepository
                        ) : base(dbContext)
 {
     _dataRepository            = new DataRepositoryBase <dynamic>(dbContext);
     _attributeRepository       = attributeRepository;
     _stringMapRepository       = stringMapRepository;
     _optionSetDetailRepository = optionSetDetailRepository;
 }
Beispiel #3
0
 public StringMapCreater(IStringMapRepository stringMapRepository
                         , ILocalizedLabelBatchBuilder localizedLabelService)
 {
     _stringMapRepository   = stringMapRepository;
     _localizedLabelService = localizedLabelService;
 }