კლასის კარგი მოდელირება ნიშნავს კლასებს, რომლებიც რეალური დომენის ცნებებს ასახავს, თითოეული ერთი 분명 პასუხისმგებლობით, დაკავშირებული ჯულ is-a/has-a ურთიერთობებით, და დამოკიდებული აბსტრაქციებზე საზღვრებში. არ არის ფორმულა, მაგრამ არსებობს განმეორებადი პროცესი.
პრაქტიკული პროცესი
1. Find the NOUNS → candidate classes (Order, Customer, Payment)
2. Find the VERBS → candidate behaviors/methods (place, refund, ship)
3. Assign each behavior to the class that OWNS the data it needs (high cohesion)
4. Choose relationships: IS-A (rare, must pass LSP) vs HAS-A (default)
5. Depend on interfaces at boundaries (DIP); inject volatile dependencies
6. Keep invariants inside the object (encapsulation); prefer immutability for values
