Changed project names
This commit is contained in:
parent
b4c4aa4010
commit
a29e57e66d
130 changed files with 501 additions and 504 deletions
|
|
@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue