I am mapping relations in mongoid, I want to know the best practices for mongoid.
Models
- Customer
- Service
- Supplier
there are four different services (S1, S2, S3, S4), each service provided by the specific supplier. How can I map these models or build the relations among them?
Thanks in advance.