public IHttpActionResult GenerateReimageSummary(string projectId)
        {
            string filePath;
            var    summary = ReimageSummary.Get(projectId);
            var    att     = summary.GenerateExcel(out filePath);

            return(Ok(att));
        }
Exemple #2
0
        public IHttpActionResult GetReimageSummary(string projectId)
        {
            var reimageSummary = new ReimageSummary();

            if (!string.IsNullOrEmpty(projectId))
            {
                reimageSummary = ReimageSummary.Get(projectId);
            }
            return(Ok(reimageSummary));
        }