AppActs.Client.WebSite.WebService.Report.GetGraphWithPlatformCompare C# (CSharp) Method

GetGraphWithPlatformCompare() private method

private GetGraphWithPlatformCompare ( System.Guid graphGuid, System.Guid applicationId, System.DateTime dateStart, System.DateTime dateEnd ) : PlatformType>.GraphWithTabularCompare
graphGuid System.Guid
applicationId System.Guid
dateStart System.DateTime
dateEnd System.DateTime
return PlatformType>.GraphWithTabularCompare
        public GraphWithTabularCompare<Platform, PlatformType> GetGraphWithPlatformCompare(Guid graphGuid, Guid applicationId, 
            DateTime dateStart, DateTime dateEnd)
        {
            GraphWithTabularCompare<Platform, PlatformType> graphWithPlatformCompare = null;
            try
            {
                graphWithPlatformCompare = this.iReportService.GetGraphWithPlatformCompare(graphGuid, applicationId, dateStart, dateEnd);
            }
            catch (Exception ex)
            {
                this.iLog.Error(ex);
            }
            return graphWithPlatformCompare;
        }