

var retlist = new List<SummaryRegion>();
            retlist.Add(new SummaryRegion()
            {
                region_id = 1,
                region_name = "Region 1",
                region_total_charge1 = 1500,
                region_total_charge2 = 900
            });
            retlist.Add(new SummaryRegion()
            {
                region_id = 2,
                region_name = "Region 2",
                region_total_charge1 = 1100,
                region_total_charge2 = 700
            });
            retlist.Add(new SummaryRegion()
            {
                region_id = 3,
                region_name = "Region 3",
                region_total_charge1 = 1500,
                region_total_charge2 = 900
            });
            retlist.Add(new SummaryRegion()
            {
                region_id = 4,
                region_name = "Region 4",
                region_total_charge1 = 1100,
                region_total_charge2 = 700
            });
            retlist.Add(new SummaryRegion()
            {
                region_id = 5,
                region_name = "Region 5",
                region_total_charge1 = 1500,
                region_total_charge2 = 900
            });
            retlist.Add(new SummaryRegion()
            {
                region_id = 6,
                region_name = "Region 6",
                region_total_charge1 = 1100,
                region_total_charge2 = 700
            });
            retlist.Add(new SummaryRegion()
            {
                region_id = 7,
                region_name = "Region 7",
                region_total_charge1 = 0,
                region_total_charge2 = 0
            });
            return retlist;