In `ValidationUtils`, these methods work in a very similar fashion and can probably be abstracted and unified into one method. To achieve this, maybe defining a function parameter like this could work: ```java public interface FieldSupplier<A, B extends UniqueEntity> { A getField(B entity); } ```