package com.prime.sony.ecommerce.service;

import java.util.Map;

import org.springframework.batch.core.JobExecution;

import com.prime.sony.ecommerce.exceptions.CustomerServiceException;

public interface CustomerService {

	public Map<String, String> saveCustomerData() throws CustomerServiceException;

	public void saveJobMonitorInfo(JobExecution jobExecution) throws CustomerServiceException;

	public Map<String, String> loadCustomerData(String storeId,String fromDate, String toDate) throws CustomerServiceException;
	
}
