public ContextMapper(string path)
 {
     requestMapper = new RequestMapper(path);
 }
Example #2
0
 public ContextMapper(string path, HttpRequest request)
 {
     requestMapper = new RequestMapper(path, request);
 }