using Autofac;
using Microsoft.Extensions.DependencyInjection;
using Nop.Core.Configuration;
using Nop.Core.Infrastructure;
using Nop.Core.Infrastructure.DependencyManagement;
using Nop.Plugin.Shipping.NopCliGeneric.Services;
namespace Nop.Plugin.Shipping.NopCliGeneric.Infrastructure
{
///
/// Dependency registrar
///
public class DependencyRegistrar : IDependencyRegistrar
{
///
/// Register services and interfaces
///
/// Service Collection
/// Type finder
/// Setting
public virtual void Register(IServiceCollection services, ITypeFinder typeFinder, AppSettings appSettings)
{
throw new System.NotImplementedException();
}
///
/// Order of this dependency registrar implementation
///
public int Order => 2;
}
}