Skip to content

Commit

Permalink
adding management bounded context
Browse files Browse the repository at this point in the history
  • Loading branch information
EnOSeChi committed Apr 21, 2021
1 parent a8c26fa commit 54825fd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions DDDInPractice.Logic/Management/HeadOffice.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace DDDInPractice.Logic.Management
{
public class HeadOffice : AggregateRoot
{
public virtual decimal Balance { get; set; }
public virtual Money Cash { get; set; }
}
}

0 comments on commit 54825fd

Please sign in to comment.