示例#1
0
        public HttpResponseMessage GetFundersPerProvince(HttpRequestMessage request, int campaignId)
        {
            var funders = _studentApi.GetFundersPerProvince(campaignId);

            var data = ProvinceCount.MapProvinceCount(funders);

            var response = request.CreateResponse(HttpStatusCode.OK, data);

            return(response);
        }