21 lines
427 B
C#
21 lines
427 B
C#
using Autofac;
|
|
using ImageHandlingLibrary;
|
|
using ImageHandlingLibrary.InterFaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PictureHandling
|
|
{
|
|
class ProgramModule : Module
|
|
{
|
|
protected override void Load(ContainerBuilder builder)
|
|
{
|
|
builder.RegisterType<Registring>().As<IRegistring>();
|
|
}
|
|
|
|
}
|
|
}
|