25 lines
496 B
C#
25 lines
496 B
C#
using Autofac;
|
|
using System.Reflection;
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.TenantACustomisations.Infrastructure.AutofacModules
|
|
{
|
|
|
|
public class ApplicationModule
|
|
:Autofac.Module
|
|
{
|
|
|
|
public string QueriesConnectionString { get; }
|
|
|
|
public ApplicationModule(string qconstr)
|
|
{
|
|
QueriesConnectionString = qconstr;
|
|
|
|
}
|
|
|
|
protected override void Load(ContainerBuilder builder)
|
|
{
|
|
//TODO
|
|
}
|
|
}
|
|
}
|