public AnnotationScripts()
        {
            var pathFinder = new ApplicationPathFinder();
            _appPath = pathFinder.GetApplicationPath();

            _scriptTemplate = string.Format("<script type='text/javascript' src='{0}{1}/GetScript{{0}}?name={{1}}'></script>",
                _appPath, _urlPrefix);

            _stylesheetTemplate = string.Format("<link rel='stylesheet' type='text/css' href='{0}{1}/CSS/GetCss{{0}}?name={{1}}' />",
                _appPath, _urlPrefix);
        }
        public AnnotationScripts()
        {
            var pathFinder = new ApplicationPathFinder();

            _appPath = pathFinder.GetApplicationPath();

            _scriptTemplate = string.Format("<script type='text/javascript' src='{0}{1}/GetScript{{0}}?name={{1}}'></script>",
                                            _appPath, _urlPrefix);

            _stylesheetTemplate = string.Format("<link rel='stylesheet' type='text/css' href='{0}{1}/CSS/GetCss{{0}}?name={{1}}' />",
                                                _appPath, _urlPrefix);
        }