예제 #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)