public string Get() { var fullName = SupportHelper?.TranslateNames(Name); string hoursSummary = HoursSummary > 99 ? HoursSummary.ToString() : $" {HoursSummary}"; return($"{fullName} {new string(' ', SupportHelper.LineLengthCorrection - fullName.Length)}{hoursSummary}{NumberDataSplitter}{GetTypeSummary(false)}{Environment.NewLine}"); }
public SupportReport(string correctionNamesPath) { SupportHelper = new SupportHelper(correctionNamesPath); }