def __init__(self, empId, db): ChangeEmployee.__init__(self, empId, db)
def __init__(self, empId, address, db): ChangeEmployee.__init__(self, empId, db) self.address = address
def __init__(self, empId, name, db): ChangeEmployee.__init__(self, empId, db) self.name = name