Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions Shared/ValueObjects/PositiveMoney.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ private PositiveMoney(Money moneyAmount)
/// </value>
public Decimal Value
{
get
{
return this.Money.Value;
}
get => this.Money.Value;
}

/// <summary>
Expand All @@ -59,7 +56,7 @@ public static PositiveMoney Create(Money moneyAmount)
{
return new PositiveMoney(moneyAmount);
}

/// <summary>
/// Guards the monetary amount.
/// </summary>
Expand Down
Loading