/// <summary> /// Gets the current yearly gifts by month /// </summary> /// <returns>Json object with months and sum of gifts during said months</returns> public JsonResult CurrentDailyReport() { GiftReports report = new GiftReports(); return(Json(report.DailyReport(), JsonRequestBehavior.AllowGet)); }
public JsonResult GetConstituentReport(int ID) { GiftReports report = new GiftReports(); return(Json(report.GetConstituentReport(ID), JsonRequestBehavior.AllowGet)); }