public ContentResult GetAll(ApiProxyGenerationModel model)
        {
            var script = _proxyScriptManager.GetScript(model.CreateOptions());

            return(Content(script, "application/x-javascript"));
        }
Beispiel #2
0
 public string GetAll(ApiProxyGenerationModel model)
 {
     return(_proxyScriptManager.GetScript(model.CreateOptions()));
 }
 public string GetAll(ApiProxyGenerationModel model)
 {
     return _proxyScriptManager.GetScript(model.CreateOptions());
 }