public OptionSetDetailDeleter(IAppContext appContext
                               , IOptionSetDetailRepository optionSetDetailRepository
                               , ILocalizedLabelService localizedLabelService)
 {
     _appContext = appContext;
     _optionSetDetailRepository = optionSetDetailRepository;
     _localizedLabelService     = localizedLabelService;
 }
Exemple #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;
 }
 public OptionSetDetailCreater(IOptionSetDetailRepository optionSetDetailRepository
                               , ILocalizedLabelBatchBuilder localizedLabelService)
 {
     _optionSetDetailRepository = optionSetDetailRepository;
     _localizedLabelService     = localizedLabelService;
 }