mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
11 lines
214 B
C#
11 lines
214 B
C#
using Yi.Framework.Core.DependencyInjection;
|
|
|
|
namespace Yi.Framework.Web
|
|
{
|
|
public class Test2Entity: ITransientDependency
|
|
{
|
|
[Autowired]
|
|
public TestEntity testEntity { get; set; }
|
|
}
|
|
}
|