Aperea.Infrastructure.IoC.WebApiControllerRegistrationConvention.ScanTypes C# (CSharp) Method

ScanTypes() public method

public ScanTypes ( StructureMap.Graph.Scanning.TypeSet types, Registry registry ) : void
types StructureMap.Graph.Scanning.TypeSet
registry Registry
return void
        public void ScanTypes(TypeSet types, Registry registry)
        {
            foreach (var type in types.AllTypes())
            {
                Process(type,registry);
            }
        }
WebApiControllerRegistrationConvention