Build returns an Entity based on the implementations internal logic, Errors are returned if state is invalid.
()
| 32 | type Builder interface { |
| 33 | // Build returns an Entity based on the implementations internal logic, Errors are returned if state is invalid. |
| 34 | Build() (Entity, error) |
| 35 | } |
| 36 | |
| 37 | // base provides fields that are shared between all Entitys. |
no outgoing calls