/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="INVBatchPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class INVBatch</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:56:17 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static INVBatch SelectOne(INVBatchPrimaryKey pk) { DatabaseHelper oDatabaseHelper = new DatabaseHelper(); bool ExecutionState = false; // Pass the values of all key parameters to the stored procedure. System.Collections.Specialized.NameValueCollection nvc = pk.GetKeysAndValues(); foreach (string key in nvc.Keys) { oDatabaseHelper.AddParameter("@" + key, nvc[key]); } // The parameter '@dlgErrorCode' will contain the status after execution of the stored procedure. oDatabaseHelper.AddParameter("@dlgErrorCode", -1, System.Data.ParameterDirection.Output); IDataReader dr = oDatabaseHelper.ExecuteReader("gsp_INVBatch_SelectbyPrimaryKey", ref ExecutionState); if (dr.Read()) { INVBatch obj = new INVBatch(); PopulateObjectFromReader(obj, dr); dr.Close(); oDatabaseHelper.Dispose(); return(obj); } else { dr.Close(); oDatabaseHelper.Dispose(); return(null); } }
/// <summary> /// This method will get row(s) from the database using the value of the field specified /// along with the details of the child table. /// </summary> /// /// <param name="pk" type="INVBatchPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class INVBatch</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:56:17 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static INVBatch SelectOneWithSALSalesLineBatchUsingBatchID(INVBatchPrimaryKey pk) { DatabaseHelper oDatabaseHelper = new DatabaseHelper(); bool ExecutionState = false; INVBatch obj = null; // Pass the values of all key parameters to the stored procedure. System.Collections.Specialized.NameValueCollection nvc = pk.GetKeysAndValues(); foreach (string key in nvc.Keys) { oDatabaseHelper.AddParameter("@" + key, nvc[key]); } // The parameter '@dlgErrorCode' will contain the status after execution of the stored procedure. oDatabaseHelper.AddParameter("@dlgErrorCode", -1, System.Data.ParameterDirection.Output); IDataReader dr = oDatabaseHelper.ExecuteReader("gsp_INVBatch_SelectOneWithSALSalesLineBatchUsingBatchID", ref ExecutionState); if (dr.Read()) { obj = new INVBatch(); PopulateObjectFromReader(obj, dr); dr.NextResult(); //Get the child records. obj.SALSalesLineBatchCollectionUsingBatchID = SALSalesLineBatch.PopulateObjectsFromReader(dr); } dr.Close(); oDatabaseHelper.Dispose(); return(obj); }
///<summary> /// This method will update one new row into the database using the property Information /// </summary> /// /// <param name="iNVBatch" type="INVBatch">This INVBatch will be updated in the database.</param> /// /// <returns>True if succeeded</returns> public bool Update(INVBatch iNVBatch) { _iNVBatch = POS.DataLayer.INVBatch.SelectOne(new POS.DataLayer.INVBatchPrimaryKey(iNVBatch.BatchID)); _iNVBatch.BatchNumber = iNVBatch.BatchNumber; _iNVBatch.ExpiryDate = iNVBatch.ExpiryDate; return(_iNVBatch.Update()); }
/// <summary> /// This method will insert one new row into the database using the property Information /// </summary> /// /// <param name="iNVBatch" type="INVBatch">This INVBatch will be inserted in the database.</param> /// /// <returns>True if succeeded</returns> public bool Insert(INVBatch iNVBatch) { _iNVBatch = new POS.DataLayer.INVBatch(); _iNVBatch.BatchID = iNVBatch.BatchID; _iNVBatch.BatchNumber = iNVBatch.BatchNumber; _iNVBatch.ExpiryDate = iNVBatch.ExpiryDate; return(_iNVBatch.Insert()); }
/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="INVBatchPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class INVBatch</returns> public INVBatch SelectOne(INVBatchPrimaryKey pk) { _iNVBatchWCF = new INVBatch(); _iNVBatch = POS.DataLayer.INVBatchBase.SelectOne(new POS.DataLayer.INVBatchPrimaryKey(pk.BatchID)); _iNVBatchWCF.BatchID = _iNVBatch.BatchID; _iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber; _iNVBatchWCF.ExpiryDate = _iNVBatch.ExpiryDate; return(_iNVBatchWCF); }
/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="INVBatchPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class INVBatch</returns> public INVBatch SelectOne(INVBatchPrimaryKey pk) { _iNVBatchWCF = new INVBatch(); _iNVBatch = POS.DataLayer.INVBatchBase.SelectOne(new POS.DataLayer.INVBatchPrimaryKey(pk.BatchID)); _iNVBatchWCF.BatchID = _iNVBatch.BatchID; _iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber; _iNVBatchWCF.ExpiryDate = _iNVBatch.ExpiryDate; return _iNVBatchWCF; }
/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of INVBatchCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:56:17 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static INVBatchCollection PopulateObjectsFromReader(IDataReader rdr) { INVBatchCollection list = new INVBatchCollection(); while (rdr.Read()) { INVBatch obj = new INVBatch(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } return(list); }
public bool InsertProductStockBatches(int userID, INVBatch iNVBatch) { bool ExecutionState = false; oDatabaseHelper = new DatabaseHelper(); oDatabaseHelper.AddParameter("@ProductStockID", iNVBatch.ProductStockID); oDatabaseHelper.AddParameter("@BatchNumber", iNVBatch.BatchNumber); oDatabaseHelper.AddParameter("@ExpiryDate", iNVBatch.ExpiryDate); oDatabaseHelper.AddParameter("@Qty", iNVBatch.Qty); oDatabaseHelper.AddParameter("@dlgErrorCode", -1, System.Data.ParameterDirection.Output); oDatabaseHelper.ExecuteScalar("usp_INVBatch_ProductStockBatch", ref ExecutionState); oDatabaseHelper.Dispose(); return ExecutionState; }
public bool InsertProductStockBatches(int userID, INVBatch iNVBatch) { bool ExecutionState = false; oDatabaseHelper = new DatabaseHelper(); oDatabaseHelper.AddParameter("@ProductStockID", iNVBatch.ProductStockID); oDatabaseHelper.AddParameter("@BatchNumber", iNVBatch.BatchNumber); oDatabaseHelper.AddParameter("@ExpiryDate", iNVBatch.ExpiryDate); oDatabaseHelper.AddParameter("@Qty", iNVBatch.Qty); oDatabaseHelper.AddParameter("@dlgErrorCode", -1, System.Data.ParameterDirection.Output); oDatabaseHelper.ExecuteScalar("usp_INVBatch_ProductStockBatch", ref ExecutionState); oDatabaseHelper.Dispose(); return(ExecutionState); }
/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of INVBatchCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:56:17 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static INVBatchCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { INVBatchCollection list = new INVBatchCollection(); if (rdr.Read()) { INVBatch obj = new INVBatch(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new INVBatch(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } oDatabaseHelper.Dispose(); return(list); } else { oDatabaseHelper.Dispose(); return(null); } }
///<summary> /// This method will update one new row into the database using the property Information /// </summary> /// /// <param name="iNVBatch" type="INVBatch">This INVBatch will be updated in the database.</param> /// /// <returns>True if succeeded</returns> public bool Update(INVBatch iNVBatch) { _iNVBatch=POS.DataLayer.INVBatch.SelectOne(new POS.DataLayer.INVBatchPrimaryKey(iNVBatch.BatchID)); _iNVBatch.BatchNumber=iNVBatch.BatchNumber; _iNVBatch.ExpiryDate=iNVBatch.ExpiryDate; return _iNVBatch.Update(); }
/// <summary> /// This method will insert one new row into the database using the property Information /// </summary> /// /// <param name="iNVBatch" type="INVBatch">This INVBatch will be inserted in the database.</param> /// /// <returns>True if succeeded</returns> public bool Insert(INVBatch iNVBatch) { _iNVBatch = new POS.DataLayer.INVBatch(); _iNVBatch.BatchID=iNVBatch.BatchID; _iNVBatch.BatchNumber=iNVBatch.BatchNumber; _iNVBatch.ExpiryDate=iNVBatch.ExpiryDate; return _iNVBatch.Insert(); }
/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of INVBatchCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 3/7/2015 2:37:08 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static INVBatchCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { INVBatchCollection list = new INVBatchCollection(); if (rdr.Read()) { INVBatch obj = new INVBatch(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new INVBatch(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } oDatabaseHelper.Dispose(); return list; } else { oDatabaseHelper.Dispose(); return null; } }
/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of INVBatchCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 3/7/2015 2:37:08 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static INVBatchCollection PopulateObjectsFromReader(IDataReader rdr) { INVBatchCollection list = new INVBatchCollection(); while (rdr.Read()) { INVBatch obj = new INVBatch(); PopulateObjectFromReader(obj,rdr); list.Add(obj); } return list; }
/// <summary> /// This method will get row(s) from the database using the value of the field specified /// along with the details of the child table. /// </summary> /// /// <param name="pk" type="INVBatchPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class INVBatch</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 3/7/2015 2:37:08 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static INVBatch SelectOneWithSALSalesLineBatchUsingBatchID(INVBatchPrimaryKey pk) { DatabaseHelper oDatabaseHelper = new DatabaseHelper(); bool ExecutionState = false; INVBatch obj=null; // Pass the values of all key parameters to the stored procedure. System.Collections.Specialized.NameValueCollection nvc = pk.GetKeysAndValues(); foreach (string key in nvc.Keys) { oDatabaseHelper.AddParameter("@" + key,nvc[key] ); } // The parameter '@dlgErrorCode' will contain the status after execution of the stored procedure. oDatabaseHelper.AddParameter("@dlgErrorCode", -1, System.Data.ParameterDirection.Output); IDataReader dr=oDatabaseHelper.ExecuteReader("gsp_INVBatch_SelectOneWithSALSalesLineBatchUsingBatchID", ref ExecutionState); if (dr.Read()) { obj= new INVBatch(); PopulateObjectFromReader(obj,dr); dr.NextResult(); //Get the child records. obj.SALSalesLineBatchCollectionUsingBatchID=SALSalesLineBatch.PopulateObjectsFromReader(dr); } dr.Close(); oDatabaseHelper.Dispose(); return obj; }