python-dependency-injector/examples/ioc_di_demos/example_ioc.py
2016-04-26 13:14:39 +03:00

19 lines
489 B
Python

"""The Code, that follows inversion of control principle."""
class Service(object):
"""Some "Service"."""
class Client(object):
"""Some "Client" that uses "Service"."""
def __init__(self, service): # Service instance is injected in Client
"""Initializer."""
self.service = service
if __name__ == '__main__':
service = Service() # Application creates Service instance
client = Client(service) # and inject Service instance into the Client