Skip to content

Instantly share code, notes, and snippets.

@birojow
Last active May 13, 2024 22:17
Show Gist options
  • Save birojow/2e76ed47e9519225a8eb58cf18b0ab3f to your computer and use it in GitHub Desktop.
Save birojow/2e76ed47e9519225a8eb58cf18b0ab3f to your computer and use it in GitHub Desktop.
class UserDsl {
...
private val contactInfoDsl = UserContactInfoDsl()
private val rolesDsl = UserRolesDsl()
...
fun build(): User {
return User(
name = name,
contactInfo = ContactInfo(
email = contactInfoDsl.email,
phoneNumber = contactInfoDsl.phoneNumber
),
roles = rolesDsl.roles
)
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment