Пример #1
0
        public BranchHistoryMerge(
			BranchHistoryAction action,
			string owner,
			DateTime when,
			int sourceChangeset,
			string sourceBranch,
			int destinationChangeset,
			string destinationBranch)
            : base(action, owner, when)
        {
            SourceChangeset = sourceChangeset;
            SourceBranch = sourceBranch;
            DestinationChangeset = destinationChangeset;
            DestinationBranch = destinationBranch;
        }
Пример #2
0
 public BranchHistory(BranchHistoryAction action, string owner, DateTime when)
 {
     Action = action;
     Owner = owner;
     When = when;
 }