SearchFacade.java

17 lines | 329 B Blame History Raw Download
package com.salesmanager.shop.store.controller.search.facade;

import com.salesmanager.core.model.merchant.MerchantStore;

/**
 * Different services for searching and indexing data
 * @author c.samson
 *
 */
public interface SearchFacade {
	

	
	public void indexAllData(MerchantStore store) throws Exception;

}