Exemple #1
0
        public CodesDB.CBNatureOfPaymentDataTable Load()
        {
            this.sqlDa.SelectCommand = sqlSelectAll;

            CodesDB.CBNatureOfPaymentDataTable dt = new CodesDB.CBNatureOfPaymentDataTable();
            Fill(dt);
            return(dt);
        }
Exemple #2
0
        public CodesDB.CBNatureOfPaymentDataTable Load(string CBNatureOfPayment)
        {
            this.sqlDa.SelectCommand = sqlSelect;
            this.sqlSelect.Parameters.Clear();
            this.sqlSelect.CommandText = "[CBNatureOfPaymentSelectByCBNatureOfPayment]";
            this.sqlSelect.Parameters.Add(new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((System.Byte)(10)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));
            this.sqlSelect.Parameters.Add(new System.Data.SqlClient.SqlParameter("@CBNatureOfPayment", System.Data.SqlDbType.NVarChar, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(10)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));

            this.sqlSelect.Parameters["@CBNatureOfPayment"].Value = CBNatureOfPayment;

            CodesDB.CBNatureOfPaymentDataTable dt = new CodesDB.CBNatureOfPaymentDataTable();
            Fill(dt);
            return(dt);
        }