19 lines
413 B
C#
19 lines
413 B
C#
namespace BudgetApp.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Simple jar-style budget where money can be added and removed.
|
|
/// </summary>
|
|
public class BaseBudget : Budget
|
|
{
|
|
public BaseBudget(Guid id, string name, Money initialBalance)
|
|
: base(id, name, initialBalance)
|
|
{
|
|
}
|
|
|
|
public BaseBudget(string name, Money initialBalance)
|
|
: this(Guid.NewGuid(), name, initialBalance)
|
|
{
|
|
}
|
|
}
|
|
|