using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Nop.Core.Infrastructure; using Nop.Plugin.Shipping.UPS.Services; namespace Nop.Plugin.Shipping.UPS.Infrastructure; /// /// Represents object for the configuring services on application startup /// public class NopStartup : INopStartup { /// /// Add and configure any of the middleware /// /// Collection of service descriptors /// Configuration of the application public virtual void ConfigureServices(IServiceCollection services, IConfiguration configuration) { //register UPSService services.AddScoped(); } /// /// Configure the using of added middleware /// /// Builder for configuring an application's request pipeline public void Configure(IApplicationBuilder application) { } /// /// Gets order of this startup configuration implementation /// public int Order => 3000; }