Ejemplo n.º 1
0
 public OptionSetCreaterController(IWebAppContext appContext
                                   , IOptionSetCreater optionSetCreater
                                   , IOptionSetFinder optionSetFinder
                                   , IOptionSetDetailFinder optionSetDetailFinder) : base(appContext)
 {
     _optionSetCreater      = optionSetCreater;
     _optionSetFinder       = optionSetFinder;
     _optionSetDetailFinder = optionSetDetailFinder;
 }
Ejemplo n.º 2
0
 public OptionSetImporter(IAppContext appContext
                          , IOptionSetCreater optionSetCreater
                          , IOptionSetUpdater optionSetUpdater
                          , IOptionSetFinder optionSetFinder
                          , IOptionSetDetailCreater optionSetDetailCreater
                          , IOptionSetDetailUpdater optionSetDetailUpdater
                          , IOptionSetDetailFinder optionSetDetailFinder)
 {
     _appContext             = appContext;
     _optionSetCreater       = optionSetCreater;
     _optionSetUpdater       = optionSetUpdater;
     _optionSetFinder        = optionSetFinder;
     _optionSetDetailCreater = optionSetDetailCreater;
     _optionSetDetailUpdater = optionSetDetailUpdater;
     _optionSetDetailFinder  = optionSetDetailFinder;
 }
Ejemplo n.º 3
0
 public OptionSetController(IWebAppContext appContext
                            , ISolutionService solutionService
                            , IOptionSetCreater optionSetCreater
                            , IOptionSetDeleter optionSetDeleter
                            , IOptionSetUpdater optionSetUpdater
                            , IOptionSetFinder optionSetFinder
                            , IOptionSetDetailCreater optionSetDetailCreater
                            , IOptionSetDetailDeleter optionSetDetailDeleter
                            , IOptionSetDetailFinder optionSetDetailFinder
                            , IOptionSetDetailUpdater optionSetDetailUpdater)
     : base(appContext, solutionService)
 {
     _optionSetCreater       = optionSetCreater;
     _optionSetDeleter       = optionSetDeleter;
     _optionSetUpdater       = optionSetUpdater;
     _optionSetFinder        = optionSetFinder;
     _optionSetDetailCreater = optionSetDetailCreater;
     _optionSetDetailDeleter = optionSetDetailDeleter;
     _optionSetDetailFinder  = optionSetDetailFinder;
     _optionSetDetailUpdater = optionSetDetailUpdater;
 }
Ejemplo n.º 4
0
 public AttributeCreater(IAppContext appContext
                         , IAttributeRepository attributeRepository
                         , IEntityFinder entityFinder
                         , IRelationShipCreater relationShipCreater
                         , IOptionSetCreater optionSetCreater
                         , IStringMapCreater stringMapCreater
                         , ILocalizedLabelBatchBuilder localizedLabelService
                         , IMetadataService metadataService
                         , IDefaultAttributeProvider defaultAttributeProvider
                         , IAttributeDependency dependencyService)
 {
     _appContext          = appContext;
     _attributeRepository = attributeRepository;
     _loc = _appContext.GetFeature <ILocalizedTextProvider>();
     _localizedLabelService    = localizedLabelService;
     _entityFinder             = entityFinder;
     _relationShipCreater      = relationShipCreater;
     _optionSetCreater         = optionSetCreater;
     _stringMapCreater         = stringMapCreater;
     _cacheService             = new Caching.CacheManager <Domain.Attribute>(_appContext.OrganizationUniqueName + ":attributes", AttributeCache.BuildKey);
     _metadataService          = metadataService;
     _defaultAttributeProvider = defaultAttributeProvider;
     _dependencyService        = dependencyService;
 }