conorH22/bike-rental

View on GitHub
src/main/java/com/csharp/bikerental/persistence/model/Station/UnlockCommand.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.csharp.bikerental.persistence.model.Station;

public class UnlockCommand implements  Command {

    private Lock lock;

    public UnlockCommand(Lock lock){
        this.lock = lock;
    }
    public void execute(){
        lock.unLock();
    }
}