Skip to content

Files

Latest commit

 

History

History
10 lines (5 loc) · 431 Bytes

object-design-style-guide.md

File metadata and controls

10 lines (5 loc) · 431 Bytes

Object Design Style Guide

> Home

Chapter 2. Creating services

Whenever a service needs another service in order to perform its task, it should declare the latter explicitly as a dependency and get it injected as a constructor argument (link)

> Home