示例#1
0
        //public static KeyLeversBuilder GenerateKeyLeversBS(VJChartInput input)
        //{
        //    KeyLeversBuilder response = new KeyLeversBuilder();
        //    input.lstCountryId = input.CountryId.Split(',').ToList();
        //    response = ChartListDSForPJ.GenerateKeyLeversDS(input);
        //    return response;
        //}

        public static VJRadarModel GetVJRadarListBS(VJRadarInput input)
        {
            VJRadarModel response = new VJRadarModel();

            input.lstCountryId = input.CountryId.Split(',').ToList();
            input.lstProductId = input.ProductId.Split(',').ToList();

            response = ChartListDSForPJ.GetVJRadarChartListDS(input);
            return(response);
        }
示例#2
0
        public static ChartModel GetChartListBS(ChartInput input)
        {
            ChartModel response = new ChartModel();

            input.lstAreaId    = input.AreaId.Split(',').ToList();
            input.lstCountryId = input.CountryId.Split(',').ToList();
            input.lstProductId = input.ProductId.Split(',').ToList();

            response = ChartListDSForPJ.GetBarChartListDS(input);
            return(response);
        }