← Crafts
Project Aneta preview

Project Aneta

Procurement production Full-stack engineer

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
TRANSACTION_DOCUMENT (no attributes) PURCHASE_ORDER int OrderId int DocumentId string ModeOfProcurement links
Procurement document graph
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; }
}
Project Aneta document console placeholder
Screenshot placeholder — procurement document list and PO detail.