Update Osztály diagram: add DiscreteCommandResult authored by Sárközi Gergely János's avatar Sárközi Gergely János
...@@ -684,7 +684,11 @@ interface ICommandResult { ...@@ -684,7 +684,11 @@ interface ICommandResult {
+ IsSuccess() : bool + IsSuccess() : bool
} }
class BiCommandResult <<sealed>> implements ICommandResult{ abstract DiscreteCommandResult implements ICommandResult {
+ ToString(): string {override}
}
class BiCommandResult <<sealed>> extends DiscreteCommandResult {
+ Success : BiCommandResult + Success : BiCommandResult
+ Failure : BiCommandResult + Failure : BiCommandResult
} }
... ...
......