view Implab.ServiceHost/Unity/ITypeRegistration.cs @ 281:e0916ddc9950 v3 tip

code cleanup and refactoring
author cin
date Fri, 01 Jun 2018 21:35:24 +0300
parents 6691aff01de1
children
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace Implab.ServiceHost.Unity {
    public interface ITypeRegistration : IRegistration {
        Type GetImplementationType(ContainerBuilder builder);

        IEnumerable<ITypeMemberInjection> MemberInjections { get; }
    }
}