yavsc/BookAStar/BookAStar/Interfaces/IComponentContext.cs

11 lines
162 B
C#

using System;
namespace BookAStar.Interfaces
{
public interface IComponentContext
{
T Resolve<T>() ;
object Resolve(Type t);
}
}