Exemplo n.º 1
0
        public OrganizationService(
            IContextManager contextManager,
            //           IUserIdentification userIdentification,
            ITranslationEntity translationManagerToVm,
            ITranslationViewModel translationManagerToEntity,
            //           ILogger<Services.ChannelService> logger,
            ICommonServiceInternal commonService,
            //           VmListItemLogic listItemLogic,
            //           DataUtils dataUtils,
            //           VmOwnerReferenceLogic ownerReferenceLogic,
            ICacheManager cacheManager,
            IPublishingStatusCache publishingStatusCache,
            IUserOrganizationChecker userOrganizationChecker,
            IVersioningManager versionManager,
            ServiceUtilities utilities,
            IValidationManager validationManager
            ) :
            base(translationManagerToVm, translationManagerToEntity, publishingStatusCache, userOrganizationChecker, contextManager, utilities, commonService, validationManager)
        {
            this.contextManager = contextManager;
//            this.logger = logger;
//            this.userIdentification = userIdentification;
//            this.listItemLogic = listItemLogic;
//            this.dataUtils = dataUtils;
//            this.ownerReferenceLogic = ownerReferenceLogic;
            this.typesCache = cacheManager.TypesCache;
//            this.languageCache = cacheManager.LanguageCache;
            this.versionManager = versionManager;
        }
Exemplo n.º 2
0
 public ServiceAndChannelService(IContextManager contextManager,
                                 ITranslationEntity translationEntToVm,
                                 ITranslationViewModel translationVmtoEnt,
                                 ILogger <ServiceAndChannelService> logger,
                                 ServiceUtilities utilities,
                                 DataUtils dataUtils,
                                 IServiceService serviceService,
                                 IChannelService channelService,
                                 IPublishingStatusCache publishingStatusCache,
                                 IVersioningManager versioningManager,
                                 IUserOrganizationChecker userOrganizationChecker,
                                 ICacheManager cacheManager,
                                 IUserOrganizationService userOrganizationService
                                 )
     : base(translationEntToVm, translationVmtoEnt, publishingStatusCache, userOrganizationChecker)
 {
     this.contextManager          = contextManager;
     this.logger                  = logger;
     this.utilities               = utilities;
     this.dataUtils               = dataUtils;
     this.serviceService          = serviceService;
     this.channelService          = channelService;
     this.versioningManager       = versioningManager;
     this.userOrganizationService = userOrganizationService;
     typesCache = cacheManager.TypesCache;
 }
Exemplo n.º 3
0
 internal EntityServiceBase(ITranslationEntity translationManagerToVm, ITranslationViewModel translationManagerToEntity, IPublishingStatusCache publishingStatusCache, IUserOrganizationChecker userOrganizationChecker, IContextManager contextManager, ServiceUtilities utilities, ICommonServiceInternal commonService, IValidationManager validationManager) : base(translationManagerToVm, translationManagerToEntity, publishingStatusCache, userOrganizationChecker)
 {
     ContextManager    = contextManager;
     Utilities         = utilities;
     CommonService     = commonService;
     ValidationManager = validationManager;
 }
Exemplo n.º 4
0
 public ServiceCollectionService(
     IContextManager contextManager,
     ITranslationEntity translationManagerToVm,
     ITranslationViewModel translationManagerToEntity,
     ILogger <ServiceService> logger,
     ServiceUtilities utilities,
     DataUtils dataUtils,
     ICommonServiceInternal commonService,
     VmOwnerReferenceLogic ownerReferenceLogic,
     ITypesCache typesCache,
     ILanguageCache languageCache,
     IPublishingStatusCache publishingStatusCache,
     IVersioningManager versioningManager,
     IGeneralDescriptionService generalDescriptionService,
     IUserOrganizationChecker userOrganizationChecker)
     : base(translationManagerToVm, translationManagerToEntity, publishingStatusCache, userOrganizationChecker)
 {
     this.contextManager      = contextManager;
     this.logger              = logger;
     this.utilities           = utilities;
     this.dataUtils           = dataUtils;
     this.commonService       = commonService;
     this.ownerReferenceLogic = ownerReferenceLogic;
     this.typesCache          = typesCache;
     this.languageCache       = languageCache;
     this.versioningManager   = versioningManager;
 }
 public GeneralDescriptionUpdateService(IContextManager contextManager, ITranslationViewModel translationManagerToEntity, ITranslationEntity transaltionManager, ILoggerFactory loggerFactory, DataUtils dataUtils)
 {
     this.contextManager = contextManager;
     this.translationManagerToEntity = translationManagerToEntity;
     this.dataUtils = dataUtils;
     this.logger = loggerFactory.CreateLogger<GeneralDescriptionUpdateService>();
     this.transaltionManager = transaltionManager;
 }
Exemplo n.º 6
0
 public TypeDataService(
     IContextManager contextManager,
     ITranslationEntity translationManagerToVm,
     ITranslationViewModel translationManagerToEntity,
     IPublishingStatusCache publishingStatusCache,
     IUserOrganizationChecker userOrganizationChecker)
     : base(translationManagerToVm, translationManagerToEntity, publishingStatusCache, userOrganizationChecker)
 {
     this.contextManager = contextManager;
 }
Exemplo n.º 7
0
 public AddressService(IContextManager contextManager, IResolveManager resolveManager, MapServiceProvider mapServiceProvider, ITranslationEntity translationManagerToVm,
                       ITranslationViewModel translationManagerToEntity,
                       IPublishingStatusCache publishingStatusCache,
                       IUserOrganizationChecker userOrganizationChecker,
                       ICacheManager cacheManager)
     : base(translationManagerToVm, translationManagerToEntity, publishingStatusCache, userOrganizationChecker)
 {
     this.resolveManager     = resolveManager;
     this.mapServiceProvider = mapServiceProvider;
     this.contextManager     = contextManager;
     this.typesCache         = cacheManager.TypesCache;
 }
Exemplo n.º 8
0
 public FintoService(
     IContextManager contextManager,
     ITranslationEntity translationEntToVm,
     ITranslationViewModel translationVmToEntity,
     IPublishingStatusCache publishingStatusCache,
     AnnotationServiceProvider annotationProvider,
     IUserOrganizationChecker userOrganizationChecker)
     : base(translationEntToVm, translationVmToEntity, publishingStatusCache, userOrganizationChecker)
 {
     this.contextManager     = contextManager;
     this.annotationProvider = annotationProvider;
 }
Exemplo n.º 9
0
 public PostalCodeService(IContextManager contextManager, ITranslationEntity translationEntToVm, ITranslationViewModel translationManagerToEntity, IPublishingStatusCache publishingStatusCache, IUserOrganizationChecker userOrganizationChecker, ILogger <PostalCodeService> logger, ILanguageCache languageCache)
     : base(translationEntToVm, translationManagerToEntity, publishingStatusCache, userOrganizationChecker)
 {
     this.contextManager = contextManager;
     this.logger         = logger;
     this.languageCache  = languageCache;
 }