예제 #1
0
        /// <summary>
        /// Returns null if not exist
        /// </summary>
        /// <param name="modelType"></param>
        /// <returns></returns>
        public virtual IController FindController(Type modelType)
        {
            if (m_ControllerList == null)
            {
                m_ControllerList = new ControllerList();
            }

            return(m_ControllerList.FindController(modelType));
        }