示例#1
0
 def __init__(self, db, connection_model):
     SQLAlchemyDatastore.__init__(self, db)
     ConnectionDatastore.__init__(self, connection_model)
示例#2
0
 def __init__(self, db, user_model, role_model):
     SQLAlchemyDatastore.__init__(self, db)
     UserDatastore.__init__(self, user_model, role_model)
示例#3
0
 def __init__(self, db, content_model, category_model):
     self.content_model = content_model
     self.category_model = category_model
     SQLAlchemyDatastore.__init__(self, db)
示例#4
0
 def __init__(self, db, connection_model):
     SQLAlchemyDatastore.__init__(self, db)
     ConnectionDatastore.__init__(self, connection_model)
示例#5
0
 def __init__(self):
     SQLAlchemyDatastore.__init__(self, db)
     UserDatastore.__init__(self, User, None)
示例#6
0
 def __init__(self):
     SQLAlchemyDatastore.__init__(self, db)
     UserDatastore.__init__(self, User, None)