view Implab.ServiceHost/Unity/IInjectionArray.cs @ 276:b4e0f81c7425 v3

container configuration docs
author cin
date Sat, 28 Apr 2018 00:11:38 +0300
parents 6fefd5811b9b
children
line wrap: on
line source

using System.Collections.Generic;

namespace Implab.ServiceHost.Unity
{
    public interface IArrayInjectionParameter {

        string TypeName { get; }

        IEnumerable<IInjectionParameter> Items { get; }
         
    }
}