public string SourceCode(QualifiedModuleName module)
        {
            var component = _projectsProvider.Component(module);

            if (component == null)
            {
                return(string.Empty);
            }

            return(_tempSourceFileHandler.Read(component) ?? string.Empty);
        }
 public string SourceCode(IVBComponent module)
 {
     return(_tempSourceFileHandler.Read(module) ?? string.Empty);
 }