Refactor Helper to FormatHelper with improved documentation

- Rename Helper class to FormatHelper for clarity
- Add comprehensive XML documentation
- Update all references in BinFileSaver, ArchUnits, and Bin
- Remove unused System.Drawing import
- Better method documentation explaining parameters and return values

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
AJ
2025-11-22 23:02:24 -05:00
parent 70f1380847
commit f55092d877
4 changed files with 24 additions and 12 deletions

View File

@@ -25,7 +25,7 @@ namespace CutList.Forms
using (var writer = new StreamWriter(file))
{
writer.AutoFlush = true;
PaddingWidthOfItemLength = _bins.Max(b => b.Items.Max(i => SawCut.Helper.ConvertToMixedFraction(i.Length).Length));
PaddingWidthOfItemLength = _bins.Max(b => b.Items.Max(i => SawCut.FormatHelper.ConvertToMixedFraction(i.Length).Length));
var id = 1;
foreach (var bin in _bins)
@@ -55,8 +55,8 @@ namespace CutList.Forms
private void WriteBinSummary(StreamWriter writer, Bin bin, int id)
{
var totalLength = SawCut.Helper.ConvertToMixedFraction(bin.Length);
var remainingLength = SawCut.Helper.ConvertToMixedFraction(bin.RemainingLength);
var totalLength = SawCut.FormatHelper.ConvertToMixedFraction(bin.Length);
var remainingLength = SawCut.FormatHelper.ConvertToMixedFraction(bin.RemainingLength);
var utilization = Math.Round(bin.Utilization * 100, 2);
writer.WriteLine($"{id}. Length: {totalLength}, {remainingLength} remaining, {bin.Items.Count} items, {utilization}% utilization");
@@ -72,7 +72,7 @@ namespace CutList.Forms
{
var first = group.First();
var count = group.Count();
var length = SawCut.Helper.ConvertToMixedFraction(first.Length).PadLeft(PaddingWidthOfItemLength);
var length = SawCut.FormatHelper.ConvertToMixedFraction(first.Length).PadLeft(PaddingWidthOfItemLength);
var name = first.Name;
var pcsSingularOrPlural = count == 1 ? "pc " : "pcs";