static public string ToString()
 {
     return(new StringBuilder()
            .AppendLine($"Author: {Author}")
            .AppendLine($"Email: {Email}")
            .AppendLine($"Code Start: {CodeStart.ToShortDateString()}")
            .AppendLine($"Code Time (hours): {Math.Round(CodeHours, 1)}")
            .AppendLine($"Requirements:")
            .AppendLine(Requirments)
            .ToString());
 }