Skip to content

Commit

Permalink
refactor: try implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-kir-wwu committed Dec 13, 2023
1 parent 9cdfda4 commit 39ba434
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

public interface IExecutionController {

public IExecution get(Integer id);

public void add(IExecution model);

public void remove(IExecution model);

public Optional<IExecution> read(Integer id);

public void create(IExecution model);
Expand Down

0 comments on commit 39ba434

Please sign in to comment.