12 lines
241 B
C#
12 lines
241 B
C#
|
|
using Autofac;
|
||
|
|
|
||
|
|
namespace PlanTempus.Core.Outbox;
|
||
|
|
|
||
|
|
public class OutboxModule : Module
|
||
|
|
{
|
||
|
|
protected override void Load(ContainerBuilder builder)
|
||
|
|
{
|
||
|
|
builder.RegisterType<OutboxService>().As<IOutboxService>().InstancePerLifetimeScope();
|
||
|
|
}
|
||
|
|
}
|