internal ADMSPParticipantBE(SSTManager pBEMng) : base(pBEMng, pBEMng.DB.ADMSPParticipant) { myA = pBEMng; myADMSPParticipantDT = (SST.ADMSPParticipantDataTable)myDT; //if (myODAL == null) // myODAL = myA.AtMng.DALMngr.GetADMSPParticipant(); }
public SST.ADMSPParticipantDataTable Load() { this.sqlDa.SelectCommand = sqlSelectAll; SST.ADMSPParticipantDataTable dt = new SST.ADMSPParticipantDataTable(); Fill(dt); return(dt); }
public SST.ADMSPParticipantDataTable LoadByFileNumber(string SSTFileNumber) { this.sqlDa.SelectCommand = sqlSelect; this.sqlSelect.Parameters.Clear(); this.sqlSelect.CommandText = "[ADMSPParticipantSelectBySSTFileNumber]"; 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("@SSTFileNumber", System.Data.SqlDbType.NVarChar, 12)); this.sqlSelect.Parameters["@SSTFileNumber"].Value = SSTFileNumber; SST.ADMSPParticipantDataTable dt = new SST.ADMSPParticipantDataTable(); Fill(dt); return(dt); }
public SST.ADMSPParticipantDataTable Load(int Id) { this.sqlDa.SelectCommand = sqlSelect; this.sqlSelect.Parameters.Clear(); this.sqlSelect.CommandText = "[ADMSPParticipantSelectById]"; 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("@Id", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(10)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null)); this.sqlSelect.Parameters["@Id"].Value = Id; SST.ADMSPParticipantDataTable dt = new SST.ADMSPParticipantDataTable(); Fill(dt); return(dt); }