Flexbase
High productivity framework for building ENDURING enterprise applications that helps you rediscover the #JoyofCoding!
🚀 Stop Writing Boilerplate Code
The Problem
The Solution
public partial class Order : DomainModelBridge
{
[Required] public string CustomerId { get; set; }
[Range(0.01, double.MaxValue)] public decimal TotalAmount { get; set; }
public virtual Order AddOrder(AddOrderCommand cmd)
{
// Your business logic here
return this;
}
}Last updated
