public override string ToString()
 {
     return
         ($"{Order} {(string.IsNullOrWhiteSpace(Name) ? "-no name-" : Name)} - C: {(Communications != null && Communications.Any() ? Communications.Count : 0)}");
 }