public static string ToFioSafe(this TDMSUser user) { try { return(ToFio(user)); } catch (Exception) { return(string.Empty); } }
public static string ToFio(this TDMSUser user) { return($"{user.FirstName} " + $"{user.MiddleName} " + $"{user.LastName}"); }