예제 #1
0
파일: Router.cs 프로젝트: can-acar/mvc
 private static void AddPath(Route router)
 {
     RouterCollection.Add(router);
 }
예제 #2
0
파일: Router.cs 프로젝트: can-acar/mvc
        public void Connect(string path, object _default, object rule)
        {
            Route router = new Route(path, _default, rule);

            AddPath(router);
        }