コード例 #1
0
ファイル: main.py プロジェクト: pritam2505/pytoner
  def __init__(self):
    Controler.__init__(self)

    self.__sql = core.Sql()    

    self._brand = Brand()
    self._product = Product()
コード例 #2
0
ファイル: brand.py プロジェクト: pritam2505/pytoner
 def __init__(self):
     Controler.__init__(self)
コード例 #3
0
ファイル: product.py プロジェクト: pritam2505/pytoner
 def __init__(self):
   Controler.__init__(self)
   self._brand = Brand()