Esempio n. 1
0
        public Stream GetCallPlanDetail(Core.Model.mdlCallPlanParam param)
        {
            string json = Core.Services.RestPublisher.Serialize(CallPlanFacade.GetCallPlanDetail(param.CallPlanID));

            WebOperationContext.Current.OutgoingResponse.ContentType = "application/json; charset=utf-8";
            MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(json));

            return(ms);
        }