Ejemplo n.º 1
0
        public IHostBuilder WithService <TService>() where TService : IService, new()
        {
            var service = new TService();

            service.RegisterDependencies(this._builder, this._configuration);

            return(this);
        }