mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +03:00
13 lines
295 B
Python
13 lines
295 B
Python
|
"""Photo repositories module."""
|
||
|
|
||
|
|
||
|
class PhotoRepository:
|
||
|
|
||
|
def __init__(self, entity_factory, fs, db):
|
||
|
self.entity_factory = entity_factory
|
||
|
self.fs = fs
|
||
|
self.db = db
|
||
|
|
||
|
def get_photos(self, user_id):
|
||
|
return [self.entity_factory() for _ in range(user_id*5)]
|