종속성은 프로퍼티나 필드 또한 Injection할 수 있다!
Injection하기 위해서는 [Inject]를 달아주면 된다!
class ClassA
{
[Inject]
IServiceA serviceA { get; set; }
[Inject]
IServiceB serviceB;
public ClassA()
{
}
}
프로퍼티와 필드에 Injection하는 것은 Method Injection을 대안하는 방법으로 사용할 수 있다!
2023.03.10 - [Unity/VContainer] - 유니티를 위한 DI 프레임워크 VContainer, Method Injection