示例#1
0
        public ActionResult GetOpportunityRevenueGraphData()
        {
            objResponse      Response             = new objResponse();
            List <TextValue> OppoRevenueGraphData = new List <TextValue>();

            try
            {
                OppoRevenueGraphData = objHomeManager.GetOpportunityRevenueGraphData();
                return(Json(OppoRevenueGraphData, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                BAL.Common.LogManager.LogError("GetOpportunityRevenueGraphData Post Method", 1, Convert.ToString(ex.Source), Convert.ToString(ex.Message), Convert.ToString(ex.StackTrace));
                return(Json(OppoRevenueGraphData, JsonRequestBehavior.AllowGet));
            }
        }