refactor: Update controllers for new Material model

MaterialsController:
- Update to use MaterialShape enum
- Add Type and Grade to imports
- Fix display name formatting

SeedController:
- Update seed data to use MaterialShape enum
- Add MaterialType assignments

CuttingTool:
- Add Notes property

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-04 23:38:21 -05:00
parent 6388e003d3
commit 0e5b63c557
3 changed files with 21 additions and 10 deletions

View File

@@ -8,5 +8,5 @@ public class CuttingTool
public bool IsDefault { get; set; }
public bool IsActive { get; set; } = true;
public ICollection<Project> Projects { get; set; } = new List<Project>();
public ICollection<Job> Jobs { get; set; } = new List<Job>();
}