Ejemplo n.º 1
0
 def __init__(self):
     '''
     Constructor
     '''
     Contact.__init__(self)
Ejemplo n.º 2
0
 def __init__(self):
     '''
     Constructor
     '''
     Contact.__init__(self)
Ejemplo n.º 3
0
 def __init__(self, *params):
     '''
     Constructor
     '''
     Contact.__init__(self)
Ejemplo n.º 4
0
 def __init__(self, *params):
     '''
     Constructor
     '''
     Contact.__init__(self)
Ejemplo n.º 5
0
 def __init__(self, name, email, phone, street, city, state, code):
     Contact.__init__(self, name, email)
     AddressHolder.__init__(self, street, city, state, code)
     self.phone = phone
Ejemplo n.º 6
0
 def __init__(self, url):
     Contact.__init__(self, url)
     self.url = url
     self.mail = MailLib.MailLib(url)
	def __init__(self,url):
		Contact.__init__(self, url)
		self.url = url
		self.mail = MailLib.MailLib(url)