Skip to content

Commit

Permalink
CanDelete has to be virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
marcwittke committed Dec 24, 2017
1 parent 059622b commit c299e02
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public virtual bool CanModify(TAggregateRoot t)
return true;
}

public bool CanDelete(TAggregateRoot t)
/// <inheritdoc />>
public virtual bool CanDelete(TAggregateRoot t)
{
return CanModify(t);
}
Expand Down

0 comments on commit c299e02

Please sign in to comment.