public string GetItmesAsHtml(DateTime statusDate, string memberName, bool validateAganistJira) { var excelDt = _oldbConnection.GetAhocDataTable(statusDate, memberName); if (excelDt.DefaultView.Count < 1) { return(string.Empty); } return(_outPutGenerator.GenerateAhockSection("AD-Hoc", this.CreateAdhocRows(excelDt.DefaultView))); }
public string GetItmesAsHtml(DateTime statusDate, string memberName, bool validateAganistJira) { var excelDt = _oldbConnection.GetInProgessDataTable(statusDate, memberName); foreach (DataRowView rowView in excelDt.DefaultView) { var row = rowView.Row; this.Authors += row["Author"] + row["Review"].ToString() + row["Tester"].ToString(); } excelDt = _oldbConnection.GetAhocDataTable(statusDate, memberName); foreach (DataRowView rowView in excelDt.DefaultView) { this.Authors += rowView.Row["Author"]; } return(this.GetMissingStatusForMembers()); }