public string ReleaseNotes(VersionControlQuery value)
 {
     return _versionControlAccess.GetReleaseNotesBetweenTwoLabels(value.LabelScope, value.BaseLabel,
         value.TargetLabel);
 }
 public IEnumerable<int> ChangeSetBetweenLabels(VersionControlQuery value)
 {
     return _versionControlAccess.GetChangeSetListBetweenTwoLabels(value.LabelScope, value.BaseLabel,
         value.TargetLabel);
 }