Skip to content

Instantly share code, notes, and snippets.

View edurbs's full-sized avatar
🏠
Working from home

Eduardo Soares edurbs

🏠
Working from home
View GitHub Profile
@edurbs
edurbs / DomainEntity.java
Last active January 13, 2024 22:56
Validação de números telefone fixo ou móvel (celular) do Brasil
public interface DomainEntity {
public default void validate() {
new EntityValidatorService().validate(this);
}
}