12 lines
250 B
C#
12 lines
250 B
C#
using Yi.Framework.Core.Attributes;
|
|
using Yi.Framework.Core.DependencyInjection;
|
|
|
|
namespace Yi.Framework.Web
|
|
{
|
|
public class Test2Entity: ITransientDependency
|
|
{
|
|
[Autowired]
|
|
public TestEntity testEntity { get; set; }
|
|
}
|
|
}
|