Ejemplo n.º 1
0
 /// <summary>
 /// khoi tao gia tri
 /// </summary>
 public LSGDTraLaiNCC()
 {
     lsgd           = null;
     Sql            = null;
     conn           = null;
     cmd            = null;
     arr            = null;
     dr             = null;
     lichsugiaodich = null;
     cn             = null;
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Select Bảng
        /// </summary>
        /// <returns></returns>
        public Entities.LSGDTraLaiNCC[] Select(Entities.LSGDTraLaiNCC ct)
        {
            Entities.LSGDTraLaiNCC[] arrC = null;
            try
            {
                lsgd = new Constants.LSGDTraLaiNCC();
                Sql  = new Constants.Sql();
                string sql = Sql.LSGDTraLaiNCC;
                conn = new Connection();
                cn   = conn.openConnection();
                cmd  = new SqlCommand(sql, cn);
                cmd.Parameters.Add(lsgd.MaNhaCungCap, SqlDbType.NVarChar, 20).Value = ct.MaNhaCungCap;
                dr  = cmd.ExecuteReader(CommandBehavior.CloseConnection);
                arr = new ArrayList();
                while (dr.Read())
                {
                    lichsugiaodich = new Entities.LSGDTraLaiNCC();
                    lichsugiaodich.MaNhaCungCap      = dr[0].ToString();
                    lichsugiaodich.MaHDTraLaiNCC     = dr[1].ToString();
                    lichsugiaodich.NgayTra           = Convert.ToDateTime(dr[2].ToString());
                    lichsugiaodich.HinhThucThanhToan = dr[3].ToString();
                    lichsugiaodich.GhiChu            = dr[4].ToString();
                    lichsugiaodich.ThanhToanNgay     = dr[5].ToString();
                    arr.Add(lichsugiaodich);
                    lichsugiaodich = null;
                }
                int n = arr.Count;
                if (n == 0)
                {
                    return(null);
                }
                arrC = new Entities.LSGDTraLaiNCC[n];
                for (int i = 0; i < n; i++)
                {
                    arrC[i] = (Entities.LSGDTraLaiNCC)arr[i];
                }
            }

            catch (Exception ex)
            { string s = ex.Message.ToString(); }
            finally
            {
                cmd.Connection.Dispose();
                cn.Close();
                conn.closeConnection();
            }
            return(arrC);
        }