Changed project names

This commit is contained in:
Marco Batzinger 2021-01-22 10:55:33 +01:00
parent b4c4aa4010
commit a29e57e66d
130 changed files with 501 additions and 504 deletions

View file

@ -0,0 +1,22 @@
using AmagnoVirtualPrinter.ProgressInfo.Core;
using AmagnoVirtualPrinter.ProgressInfo.Core.Message;
using AmagnoVirtualPrinter.ProgressInfo.Lib;
using AmagnoVirtualPrinter.ProgressInfo.Lib.Interfaces;
using AmagnoVirtualPrinter.ProgressInfo.Lib.Message;
using Autofac;
namespace AmagnoVirtualPrinter.ProgressInfo.Autofac
{
public class ProgressInfoModule : Module
{
protected override void Load(ContainerBuilder builder)
{
builder.RegisterType<ProgressInfoBroker>().As<IProgressInfo>().SingleInstance();
builder.RegisterType<MessageFactory>().As<IMessageFactory>();
builder.RegisterType<Message>();
builder.RegisterType<ProgressInfoServerFactory>().As<IProgressInfoServerFactory>();
builder.RegisterType<ProgressInfoProcessManager>().As<IProgressInfoProcessManager>();
builder.RegisterType<ProgressInfoServer>().As<IProgressInfoServer>();
}
}
}