def unlockAllEmployee(self): #OVERRIDEN return change.changeEmployeeLock('UNLOCKED', 'ALL', 'ADMIN', self._cur)
def unlockAllEmployee(self): #WILL BE OVERRIDEN - UNLOCKS ONLY CASHIER return change.changeEmployeeLock('UNLOCKED', 'ALL', 'MANAGER', self._cur)
def unlockParticularEmployee(self): #OVERRIDEN return change.changeEmployeeLock('UNLOCKED', 'ONE', 'ADMIN', self._cur)
def unlockParticularEmployee( self): #WILL BE OVERRIDEN - LOCKS ONLY CASHIER return change.changeEmployeeLock('UNLOCKED', 'ONE', 'MANAGER', self._cur)