Skip to the content.
package com.bookshop.solid.isp;

import java.math.BigDecimal;

/** One role, one interface: the money side. */
public interface Accountant {

    BigDecimal dailyTakings();
}

Raw file