Project Aneta
Government procurement document management for DSA Marketing, Inc. — C# workflows for purchase orders, transaction documents, and compliance packets.
Overview
dsa-marketing is the production system behind Project Aneta. The stack is ASP.NET with C# models linking purchase orders to transaction documents — the same procurement domain family as barangay docket work, scoped to government vendor operations for DSA Marketing.
What it covers
- Purchase order records tied to document IDs
- Mode-of-procurement metadata per order
- Transaction document graph for audit trails
- Wireframed UX evolved into production C# pages
namespace Aneta.Models;
public partial class PurchaseOrder
{
public int OrderId { get; set; }
public int? DocumentId { get; set; }
public string? ModeOfProcurement { get; set; }
public virtual TransactionDocument? Document { get; set; }
}