Example #1
0
    def __init__(self):
        self._connection = Inject('database connection')
        self._conta_dao = Inject('conta dao')
        self._produto_dao = Inject('produto dao')
        self._fornecedor_dao = Inject('fornecedor dao')
        self._lancamento_dao = Inject('lancamento dao')

        self._unknown_contas = None
        self._unknown_produtos = None
        self._unknown_fornecedores = None
Example #2
0
 def __init__(self):
     self._configs = Inject('app configuration')
     self._verbosity_level = None
Example #3
0
 def __init__(self):
     self._dao = Inject('conta dao')
Example #4
0
 def __init__(self):
     self._lancamento_dao = Inject('lancamento dao')
Example #5
0
 def __init__(self):
     self._config = Inject('app configuration')
     self._logger = Inject('logger')
     self._git = Inject('fdc git wrapper')
Example #6
0
 def __init__(self):
     self._configs = Inject('app configuration')
     self._logger = Inject('logger')
Example #7
0
 def __init__(self):
     self._conta_dao = Inject('conta dao')
     self._lancamento_dao = Inject('lancamento dao')
Example #8
0
 def __init__(self):
     self._external_dependency = Inject('external_dependency')
Example #9
0
 def __init__(self):
     self._dependency = Inject('dependency_name')
Example #10
0
 def __init__(self):
     self._dependency = Inject('dependency which doesnt exists')
Example #11
0
 def __init__(self):
     self._dependency = Inject('transient_dependency')
Example #12
0
 def __init__(self):
     self._was_set = Inject('dependency_of_external_dependency_was_set')
Example #13
0
 def __init__(self):
     self._dependency_with_transient = Inject('dependency_with_transient')
Example #14
0
 def __init__(self, entity_class, metadata):
     self._connection = Inject('database connection')
     self._logger = Inject('logger')
     self._entity_class = entity_class
     self._metadata = metadata