001 package org.kuali.ole.service;
002
003 import org.kuali.ole.patron.bo.OlePatronDocument;
004
005 import java.util.Map;
006
007 /**
008 * Created with IntelliJ IDEA.
009 * User: ?
010 * Date: 6/1/12
011 * Time: 8:28 PM
012 * To change this template use File | Settings | File Templates.
013 */
014 public interface OlePatronHelperService {
015
016 public Map<String, String> convertPatronPropertiesToEntityProperties(Map<String, String> criteria);
017
018 public boolean deletePatron(OlePatronDocument olePatronDocument);
019 }