Example #1
0
        public static DIHelper AddFilesSubscriptionManagerService(this DIHelper services)
        {
            services.TryAddScoped <SubscriptionManager>();

            return(services
                   .AddFilesNotifySourceService()
                   .AddCoreBaseSettingsService());
        }
        public static DIHelper AddNotifyClientService(this DIHelper services)
        {
            services.TryAddScoped <NotifyClient>();

            return(services
                   .AddFilesNotifySourceService()
                   .AddBaseCommonLinkUtilityService()
                   .AddUserManagerService()
                   .AddSecurityContextService()
                   .AddFilesLinkUtilityService()
                   .AddFileUtilityService()
                   .AddPathProviderService()
                   .AddTenantManagerService()
                   .AddDaoFactoryService()
                   );
        }