コード例 #1
0
ファイル: Domain.py プロジェクト: drxbate/M1
 def __iter__(self):
     for i in ItemsCollection.__iter__(self):
         yield i.Domain
コード例 #2
0
ファイル: Customer.py プロジェクト: drxbate/M1
 def __init__(self,owner,custid,):
     ItemsCollection.__init__(self, CustomerHandler.queryRequirement(owner=owner, custid=custid), adapterClass=RequirementAdapter)
     self.__custid__=custid
     self.__owner__=owner
コード例 #3
0
ファイル: Domain.py プロジェクト: drxbate/M1
 def __init__(self,cursor):
     ItemsCollection.__init__(self, cursor, DomainAdapter)
コード例 #4
0
ファイル: Group.py プロジェクト: drxbate/M1
 def __init__(self,cursor):
     ItemsCollection.__init__(self, cursor, GroupAdapter)