Пример #1
0
        /// <summary>
        /// Adds a singleton <see cref="IMatToaster"/> instance to the DI <see cref="IServiceCollection"/> with an action for configuring the default <see cref="MatToastConfiguration"/>
        /// </summary>
        public static IServiceCollection AddMatToaster(
            this IServiceCollection services,
            Action <MatToastConfiguration> configure)
        {
            if (configure == null)
            {
                throw new ArgumentNullException(nameof(configure));
            }

            var options = new MatToastConfiguration();

            configure(options);

            return(AddMatToaster(services, options));
        }
Пример #2
0
        /// <summary>
        /// Adds a singleton <see cref="IMatToaster"/> instance to the DI <see cref="IServiceCollection"/> with the specified <see cref="MatToastConfiguration"/>
        /// </summary>
        public static IServiceCollection AddMatToaster(this IServiceCollection services, MatToastConfiguration configuration)
        {
            if (configuration == null)
            {
                throw new ArgumentNullException(nameof(configuration));
            }

            services.TryAddSingleton <IMatToaster>(builder => new MatToaster(configuration));
            return(services);
        }