Exemplo n.º 1
0
 public static ChangesetDTO CreateChangesetDTO(string revision, AuthorDTO author, global::System.DateTime time)
 {
     ChangesetDTO changesetDTO = new ChangesetDTO();
     changesetDTO.Revision = revision;
     if ((author == null))
     {
         throw new global::System.ArgumentNullException("author");
     }
     changesetDTO.Author = author;
     changesetDTO.Time = time;
     return changesetDTO;
 }
Exemplo n.º 2
0
 public void AddToChangesets(ChangesetDTO changesetDTO)
 {
     base.AddObject("Changesets", changesetDTO);
 }