Ali.Rashidi
Ali.Rashidi

Reputation: 1462

Write ConfigureServices Method In Another Class File

We have a template for our projects in our company in which they write AddTransient<>() methods inside another class. I want to know how to put ConfigureServices method of startup inside another class.

See we have a very simple startup project like this:

public class Startup
{
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddControllers();
        services.AddTransient<LocationService, LocationService>();
        services.AddTransient<PersonService, PersonService>();
        services.AddTransient<UserService, UserService>();
        services.AddAutoMapper(typeof(Startup));
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }

        app.UseHttpsRedirection();

        app.UseRouting();

        app.UseAuthorization();

        app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllers();
        });
    }
}

I want to move my (dependent class registration) to another class inside my project.

So this will be my new Startup.cs:

 public class Startup
{
public Startup(IConfiguration configuration)
{
    Configuration = configuration;
}

public IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
    services.AddControllers();
    services.AddAutoMapper(typeof(Startup));
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
    }

    app.UseHttpsRedirection();

    app.UseRouting();

    app.UseAuthorization();

    app.UseEndpoints(endpoints =>
    {
        endpoints.MapControllers();
    });
}
}

And this will be my ExampleFileName.cs :

 public void ConfigureServices(IServiceCollection services)
{
    services.AddTransient<LocationService, LocationService>();
    services.AddTransient<PersonService, PersonService>();
    services.AddTransient<UserService, UserService>();
}

Upvotes: 4

Views: 1936

Answers (2)

Pritom Sarkar
Pritom Sarkar

Reputation: 2252

First, you have to create a folder named Extensions and there you will create a file name whatever you want. I give my file name is ApplicationService.

Extensions/ApplicationServiceExtensions.cs

namespace API.Extensions
{
    public static class ApplicationServiceExtensions
    {
        public static IServiceCollection AddApplicationServices(this IServiceCollection services, IConfiguration config)
        {
             
            services.AddTransient<LocationService, LocationService>();
            services.AddTransient<PersonService, PersonService>();
            services.AddTransient<UserService, UserService>();

            return services;

        }
    }
}

startup.cs

 private readonly IConfiguration _config;
        public Startup(IConfiguration config)
        {
            _config = config;
           
        }

        public IConfiguration Configuration { get; }

        //clarify code



 public void ConfigureServices(IServiceCollection services)
        {
           services.AddApplicationServices(_config);
           
            //clarify code
        }

So,it's an example of putting the ConfigureServices method of startup inside another class. and which you want.

Upvotes: 4

Isparia
Isparia

Reputation: 712

I Typed this blind, but is this what you want?

public abstract class StartUpBase
{
    public virtual void ConfigureServices(IServiceCollection services)
    {
        services.AddTransient<LocationService, LocationService>();
        services.AddTransient<PersonService, PersonService>();
        services.AddTransient<UserService, UserService>();
    }
}


public class StartUp : StartUpBase
{
     public override ConfigureServices(IServiceCollection services)
     {
          services.AddControllers();
          base.ConfigureServices(services);
          services.AddAutoMapper(typeof(Startup));
          
     }
}

Alternative:

public static class Another
{
   public static IServiceCollection AddTransitentServices(IServiceCollection services)
   {
       //add your transistent services here

       return services;
   } 
}

public class StartUp
{
     public override ConfigureServices(IServiceCollection services)
     {
          services.AddControllers();
          services = Another.AddTransitentServices(services)
          services.AddAutoMapper(typeof(Startup));

     }
}

Upvotes: 2

Related Questions