Exemplo n.º 1
0
        public IEnumerable <string> GetTagsBySourcefile(Guid repositoryId, string sourcefileName)
        {
            SourcefileDto sourcefile = GetSourcefileByName(repositoryId, sourcefileName);

            return(sourcefile.Tags);
        }
Exemplo n.º 2
0
        public void AddSourcefile(int version, SourcefileDto sourcefile)
        {
            _version = version;

            _sourcefiles.Add(sourcefile);
        }
Exemplo n.º 3
0
        public void AddRepositoryListSourcefile(Guid repositoryListId, int version, SourcefileDto sourcefile)
        {
            RepositoryListDto repositoryList = GetRepositoryListById(repositoryListId);

            repositoryList.AddSourcefile(version, sourcefile);
        }