- add IInjectorInstaller

pull/32/head
Simon Gockner 7 years ago
parent b568366c5a
commit 46f5f93e0c
  1. 20
      LightweightIocContainer/Interfaces/IInjectorInstaller.cs

@ -0,0 +1,20 @@
// Author: simon.gockner
// Created: 2019-05-20
// Copyright(c) 2019 SimonG. All Rights Reserved.
using LightweightIocContainer.Interfaces.Registrations;
namespace LightweightIocContainer.Interfaces
{
/// <summary>
/// The base class for <see cref="IInjectorContainer"/> installers
/// </summary>
public interface IInjectorInstaller
{
/// <summary>
/// Install the needed <see cref="IRegistrationBase"/>s in the given <see cref="IInjectorContainer"/>
/// </summary>
/// <param name="container">The current <see cref="IInjectorContainer"/></param>
void Install(IInjectorContainer container);
}
}
Loading…
Cancel
Save