コード例 #1
0
ファイル: Adhock.cs プロジェクト: maheshbailwal2/Projects
        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)));
        }
コード例 #2
0
        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());
        }