2024-10-07 09:51:55 +08:00
|
|
|
|
using Autofac.Core;
|
|
|
|
|
|
using System.Reflection;
|
2024-11-15 11:37:55 +08:00
|
|
|
|
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
namespace WcsMain.StartAction;
|
|
|
|
|
|
|
|
|
|
|
|
public class AutowiredSelector : IPropertySelector
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool InjectProperty(PropertyInfo propertyInfo, object instance)
|
|
|
|
|
|
{
|
|
|
|
|
|
return propertyInfo.GetCustomAttribute(typeof(AutowiredAttribute)) != default;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|