Subversion Repositories SmartDukaan

Rev

Rev 28468 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28468 Rev 30220
Line 1... Line 1...
1
package com.spice.profitmandi.service;
1
package com.spice.profitmandi.service;
2
 
2
 
3
import java.util.List;
3
import com.spice.profitmandi.common.model.ChartModel;
4
import java.util.Map;
-
 
5
 
-
 
6
import org.springframework.stereotype.Service;
4
import org.springframework.stereotype.Service;
7
 
5
 
8
import com.spice.profitmandi.common.model.ChartModel;
6
import java.util.LinkedHashSet;
-
 
7
import java.util.List;
-
 
8
import java.util.Map;
9
 
9
 
10
@Service
10
@Service
11
public interface ChartService {
11
public interface ChartService {
12
 
12
 
13
	public ChartModel createChart(int monthValue,
13
	ChartModel createChart(int monthValue,
14
			Map<String, List<Double>> sortedBrandValue, List<String> colorList,
14
						   Map<String, List<Double>> sortedBrandValue, List<String> colorList,
15
			List<String> borderList, String title);
15
						   List<String> borderList, String title);
16
 
16
 
-
 
17
	ChartModel createChartWithLabels(LinkedHashSet<String> labels, Map<String, List<Double>> sortedBrandValue, List<String> colorList, List<String> borderList, String title);
17
}
18
}