Zenject 배우기 3-2) 컨스트럭션 메서드 (Construction Methods)
3-1) 에서 살펴보았던 종속성 맵핑 메서드 중 ConstructionMethod 부분에 대해 따로 알아보자. 이전 예제에서 4번째 줄은 실제 메서드 이름이 아닌 분류 명칭일 뿐이고, 해당 위치에 Construction Method가 필요하다고 표시한 것이다. Container.Bind() .WithId(Identifier) .To() .FromConstructionMethod() // 이것! .AsScope() .WithArguments(Arguments) .OnInstantiated(InstantiatedCallback) .When(Condition) .(Copy|Move)Into(All|Direct)SubContainers() .NonLazy() .IfNotBound(); 1. FromNew - C..