Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 591 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 591 Bytes

Domains

The domain is a wrapper around a list of objects with low level business logic. A domain typically contains these methods;;

  • Getters
    To retrieve information for the objects inside the domain
  • Setters
    Change data on the objects in the domain
  • Selectors
    Select a subset of records based on criteria
  • Business logic
    Perform complex operations on the objects of the domain, no external references out side the domain.

The objects contained in a domain can be of these data-types;

  • SObjects
  • Compound domains
  • Data Transfer Objects (DTO's)