Subversion Repositories SmartDukaan

Rev

Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service;

import java.util.List;
import java.util.Map;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.model.ChartModel;

@Service
public interface ChartService {

        public ChartModel createChart(int monthValue,
                        Map<String, List<Double>> sortedBrandValue, List<String> colorList,
                        List<String> borderList, String title);

}