Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
@@ -0,0 +1,34 @@
namespace PowderCoating.Core.Entities;
/// <summary>
/// Company-specific preparation service lookup table.
/// Stores common prep services like "Sandblasting", "Chemical Stripping", "Hand Sanding", etc.
/// </summary>
public class PrepService : BaseEntity
{
/// <summary>
/// Name of the preparation service (e.g., "Sandblasting", "Chemical Stripping").
/// </summary>
public string ServiceName { get; set; } = string.Empty;
/// <summary>
/// Optional detailed description of the service.
/// </summary>
public string? Description { get; set; }
/// <summary>
/// Display order for sorting services in lists (lower numbers appear first).
/// </summary>
public int DisplayOrder { get; set; }
/// <summary>
/// Whether this service is currently active and available for selection.
/// </summary>
public bool IsActive { get; set; } = true;
/// <summary>
/// When true, the item wizard shows a blast-setup selector for this prep service so the
/// correct throughput rate is used to calculate estimated minutes.
/// </summary>
public bool RequiresBlastSetup { get; set; }
}