public void GetOutPatientIndicatorLastMonth(HttpContext context, IPatientsExperenceService service)
        {
            var serializer = new JavaScriptSerializer();

            context.Response.Write(serializer.Serialize(service.GetOutPatientIndicatorLastMonth()));
        }
 public Double[] GetOutPatientIndicatorLastMonth()
 {
     return(patientsExperenceService.GetOutPatientIndicatorLastMonth());
 }