/// <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.GetByType(modelType)); }