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

GetGraphWithApplicationCompare() private method

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