public static string GetBundlePath(IRequestHandler requestHandler, string filename)
 {
     return(PathManager.GetBundlesPath(requestHandler) + "\\" + filename);
 }
 public static string GetViewPath(IRequestHandler requestHandler, string subdirectory, string filename)
 {
     return(PathManager.GetViewsPath(requestHandler, subdirectory) + "\\" + filename);
 }