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

GetGraphVersions() private method

private GetGraphVersions ( System.Guid graphGuid, System.Guid applicationId, List versions, System.DateTime dateStart, System.DateTime dateEnd ) : GraphWithTabularCompare
graphGuid System.Guid
applicationId System.Guid
versions List
dateStart System.DateTime
dateEnd System.DateTime
return AppActs.Client.Model.GraphWithTabularCompare
        public GraphWithTabularCompare GetGraphVersions(Guid graphGuid, Guid applicationId, List<string> versions, DateTime dateStart, DateTime dateEnd)
        {
            GraphWithTabularCompare graph = null;
            try
            {
                graph = this.iReportService.GetGraphVersions(graphGuid, applicationId, versions, dateStart, dateEnd);
            }
            catch (Exception ex)
            {
                this.iLog.Error(ex);
            }
            return graph;
        }