public void Render() { // Get the UI namespace here and pass it to the base class. string namespaceName = _script.Settings.UI.UINamespace; IRenderObject ui = new WebApiBaseClass(_context, namespaceName); ui.Render(); }
public void Render() { // Get the Services namespace here and pass it to the base class. string namespaceName = _script.Settings.ServiceLayer.ServiceNamespace; IRenderObject service = new WebApiBaseClass(_context, namespaceName); service.Render(); }