/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package aspectspringtest;

/**
 *
 * @author dhaval
 */
public class CreditService {

    public void doCredit(String name, int amount){
        System.out.println(String.format("crediting from %1$s of %2$s", name, amount));
    }
}
