示例#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)