SoftDeletable.java

package cz.vsb.crm.model;

import java.time.LocalDate;

public interface SoftDeletable {

    LocalDate getDeactivatedAt();

    void setDeactivatedAt(LocalDate deactivatedAt);

    default boolean isActive() {
        return getDeactivatedAt() == null;
    }
}