11 lines
162 B
C#
11 lines
162 B
C#
|
|
using System;
|
|
|
|
namespace BookAStar.Interfaces
|
|
{
|
|
public interface IComponentContext
|
|
{
|
|
T Resolve<T>() ;
|
|
object Resolve(Type t);
|
|
}
|
|
}
|