final update
This commit is contained in:
12
Website/LOC.Core/DependencyResolution/IResolver.cs
Normal file
12
Website/LOC.Core/DependencyResolution/IResolver.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace LOC.Core.DependencyResolution
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public interface IResolver
|
||||
{
|
||||
object GetService(Type serviceType);
|
||||
IEnumerable<object> GetServices(Type serviceType);
|
||||
T GetService<T>();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user