コード例 #1
0
        public DataSet thongke(DTO_THONGKE str)
        {
            conn.Open();
            SqlDataAdapter da = new SqlDataAdapter(str.Chuoi, conn);
            DataSet        ds = new DataSet();

            da.Fill(ds);
            conn.Close();
            return(ds);
        }
コード例 #2
0
 public DataSet thongKe(DTO_THONGKE str)
 {
     return(dao.thongke(str));
 }