/src/LinFu.IoC/Configuration/ServiceInstance.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 9 code · 2 blank · 3 comment · 0 complexity · bf1fa3be280309a9511b2875af57751a MD5 · raw file
- using LinFu.IoC.Interfaces;
- namespace LinFu.IoC.Configuration
- {
- /// <summary>
- /// Represents the default implementation of the <see cref="IServiceInstance" /> interface.
- /// </summary>
- internal class ServiceInstance : IServiceInstance
- {
- public IServiceInfo ServiceInfo { get; internal set; }
- public object Object { get; internal set; }
- }
- }