package com.baeldung; import java.util.List; /** * Created by johnson on 3/9/17. */ public interface LedgerServiceInterface { List getEntries(int count); }