Exemplo n.º 1
0
 public GitHubSourceFileSelection(string path, string filename, string url, string content, IGitHubLineSelection selection)
     : base(path, filename, url, content)
 {
     Content = selection.TransformContent(content);
 }
Exemplo n.º 2
0
 public GitHubSourceFileSelection(GitHubSourceFile sourceFile, IGitHubLineSelection selection) :
     this(sourceFile.Path, sourceFile.Filename, sourceFile.Url, sourceFile.Content, selection)
 {
 }