Exemplo n.º 1
0
        private static List <BDCDA> GetBDCDA(string prjId)
        {
            DataTable dt = GetAllSlbhFrmSJD(prjId);

            if (null != dt && dt.Rows.Count > 0)
            {
                List <BDCDA> list = new List <BDCDA>();
                foreach (DataRow row in dt.Rows)
                {
                    BDCDA da = CreateBDCDA(row["slbh"].ToString());
                    list.Add(da);
                }
                return(list);
            }
            return(null);
        }
Exemplo n.º 2
0
 private static void InserIntoBDCDB(BDCDA da)
 {
     throw new NotImplementedException();
 }