Пример #1
0
 private static void PrintCounteragentList(CounteragentList counteragentList, string title)
 {
     System.Console.WriteLine();
     System.Console.WriteLine($"{title} ({counteragentList.Counteragents.Count}/{counteragentList.TotalCount}): ");
     foreach (var counteragent in counteragentList.Counteragents)
     {
         OutputHelpers.PrintOrganization(counteragent.Organization);
     }
     System.Console.WriteLine();
 }