예제 #1
0
파일: IoC.cs 프로젝트: won21kr/Chromely
 public static void RegisterPerRequest(Type service, string key, Type implementation)
 {
     if (m_container != null)
     {
         m_container.RegisterPerRequest(service, key, implementation);
     }
 }