Refactor Category and Link Repository to use generic the persistence adapter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
qvalentin 2022-04-22 10:31:59 +02:00
parent a1a67b3a7c
commit e634fbd1aa
Signed by: qvalentin
GPG key ID: C979FA1EAFCABF1C
8 changed files with 75 additions and 19 deletions

View file

@ -1,6 +1,5 @@
package category;
public interface CategoryIdGenerator
{
public interface CategoryIdGenerator {
CategoryId generateId();
}