/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package weld.lab1.service; import java.math.BigDecimal; /** * * @author wayne */ public interface PaymentService { boolean pay(String account, BigDecimal amount); }