string FormatProjectHistoryItem(ProjectHistoryInfo historyItem) { return($"{historyItem.ActionDate},{historyItem.Comment},{historyItem.Label},{historyItem.Message},{historyItem.Name},{historyItem.Type},{historyItem.User},{historyItem.Version}"); }
string FormatProjectHistoryItem(ProjectHistoryInfo historyItem) { return $"{historyItem.ActionDate},{historyItem.Comment},{historyItem.Label},{historyItem.Message},{historyItem.Name},{historyItem.Type},{historyItem.User},{historyItem.Version}"; }
static bool IsBranchCreatedTimeStamp(ProjectHistoryInfo x) { return(x.Message != null && x.Message.ToLowerInvariant() == "create"); }
static bool IsBranchCreatedTimeStamp(ProjectHistoryInfo x) { return x.Message != null && x.Message.ToLowerInvariant() == "create"; }