Guest User

Untitled

a guest
Jun 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. class KtxClient2 {
  2. fun buildCompany(): Company {
  3. return company {
  4. employee {
  5. setFirstName("Doug")
  6. setLastName("Sigelbaum")
  7. setIsManager(false)
  8. setManagerId("XXX")
  9. }
  10. office {
  11. setAddress("San Francisco")
  12. setCapacity(2500)
  13. setOccupancy(2400)
  14. }
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment