/// <summary>
		/// This method will return a list of objects representing all records in the table.
		/// </summary>
		///
		/// <returns>list of objects of class INVTransferLineBatch in the form of object of INVTransferLineBatchCollection </returns>
		public INVTransferLineBatchCollection SelectAll()
		{
			INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();
			foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectAll())
			{
				_iNVTransferLineBatchWCF = new INVTransferLineBatch();
				
				_iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
				_iNVTransferLineBatchWCF.TransferLineID = _iNVTransferLineBatch.TransferLineID;
				_iNVTransferLineBatchWCF.BatchID = _iNVTransferLineBatch.BatchID;
				_iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;
				
				iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
			}
			return iNVTransferLineBatchCollection;
		}
Пример #2
0
        /// <summary>
        /// This method will return a list of objects representing all records in the table.
        /// </summary>
        ///
        /// <returns>list of objects of class INVTransferLineBatch in the form of object of INVTransferLineBatchCollection </returns>
        public INVTransferLineBatchCollection SelectAll()
        {
            INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();

            foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectAll())
            {
                _iNVTransferLineBatchWCF = new INVTransferLineBatch();

                _iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
                _iNVTransferLineBatchWCF.TransferLineID      = _iNVTransferLineBatch.TransferLineID;
                _iNVTransferLineBatchWCF.BatchID             = _iNVTransferLineBatch.BatchID;
                _iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;

                iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
            }
            return(iNVTransferLineBatchCollection);
        }
Пример #3
0
        /// <summary>
        /// This method will return a list of objects representing the specified number of entries from the specified record number in the table
        /// using the value of the field specified
        /// </summary>
        ///
        /// <param name="field" type="string">Field of the class INVTransferLineBatch</param>
        /// <param name="fieldValue" type="object">Value for the field specified.</param>
        /// <param name="fieldValue2" type="object">Value for the field specified.</param>
        /// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
        /// <param name="orderByStatement" type="string">The field value to number.</param>
        /// <param name="pageSize" type="int">Number of records returned.</param>
        /// <param name="skipPages" type="int">The number of missing pages.</param>
        ///
        /// <returns>List of object of class INVTransferLineBatch in the form of an object of class INVTransferLineBatchCollection</returns>
        public INVTransferLineBatchCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement)
        {
            INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();

            foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement))
            {
                _iNVTransferLineBatchWCF = new INVTransferLineBatch();

                _iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
                _iNVTransferLineBatchWCF.TransferLineID      = _iNVTransferLineBatch.TransferLineID;
                _iNVTransferLineBatchWCF.BatchID             = _iNVTransferLineBatch.BatchID;
                _iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;

                iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
            }
            return(iNVTransferLineBatchCollection);
        }
Пример #4
0
        /// <summary>
        /// This method will return a list of objects representing the specified number of entries from the specified record number in the table.
        /// </summary>
        ///
        /// <param name="pageSize" type="int">Number of records returned.</param>
        /// <param name="skipPages" type="int">The number of missing pages.</param>
        /// <param name="orderByStatement" type="string">The field value to number.</param>
        ///
        /// <returns>list of objects of class INVTransferLineBatch in the form of an object of class INVTransferLineBatchCollection </returns>
        public INVTransferLineBatchCollection SelectAllPaged(int?pageSize, int?skipPages, string orderByStatement)
        {
            INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();

            foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectAllPaged(pageSize, skipPages, orderByStatement))
            {
                _iNVTransferLineBatchWCF = new INVTransferLineBatch();

                _iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
                _iNVTransferLineBatchWCF.TransferLineID      = _iNVTransferLineBatch.TransferLineID;
                _iNVTransferLineBatchWCF.BatchID             = _iNVTransferLineBatch.BatchID;
                _iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;

                iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
            }
            return(iNVTransferLineBatchCollection);
        }
Пример #5
0
        /// <summary>
        /// This method will get row(s) from the database using the value of the field specified
        /// </summary>
        ///
        /// <param name="field" type="string">Field of the class INVTransferLineBatch</param>
        /// <param name="fieldValue" type="object">Value for the field specified.</param>
        /// <param name="fieldValue2" type="object">Value for the field specified.</param>
        /// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
        ///
        /// <returns>List of object of class INVTransferLineBatch in the form of an object of class INVTransferLineBatchCollection</returns>
        public INVTransferLineBatchCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation)
        {
            INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();

            foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectByField(field, fieldValue, fieldValue2, typeOperation))
            {
                _iNVTransferLineBatchWCF = new INVTransferLineBatch();

                _iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
                _iNVTransferLineBatchWCF.TransferLineID      = _iNVTransferLineBatch.TransferLineID;
                _iNVTransferLineBatchWCF.BatchID             = _iNVTransferLineBatch.BatchID;
                _iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;

                iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
            }
            return(iNVTransferLineBatchCollection);
        }
Пример #6
0
		/// <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 INVTransferLineBatchCollection</returns>
		///
		/// <remarks>
		///
		/// <RevisionHistory>
		/// Author				Date			Description
		/// DLGenerator			3/7/2015 2:37:02 PM		Created function
		/// 
		/// </RevisionHistory>
		///
		/// </remarks>
		///
		internal static INVTransferLineBatchCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) 
		{

			INVTransferLineBatchCollection list = new INVTransferLineBatchCollection();
			
            if (rdr.Read())
			{
				INVTransferLineBatch obj = new INVTransferLineBatch();
				PopulateObjectFromReader(obj, rdr);
				list.Add(obj);
				while (rdr.Read())
				{
					obj = new INVTransferLineBatch();
					PopulateObjectFromReader(obj, rdr);
					list.Add(obj);
				}
				oDatabaseHelper.Dispose();
				return list;
			}
			else
			{
				oDatabaseHelper.Dispose();
				return null;
			}
			
		}
Пример #7
0
		/// <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 INVTransferLineBatchCollection</returns>
		///
		/// <remarks>
		///
		/// <RevisionHistory>
		/// Author				Date			Description
		/// DLGenerator			3/7/2015 2:37:02 PM		Created function
		/// 
		/// </RevisionHistory>
		///
		/// </remarks>
		///
		internal static INVTransferLineBatchCollection PopulateObjectsFromReader(IDataReader rdr) 
		{
			INVTransferLineBatchCollection list = new INVTransferLineBatchCollection();
			
			while (rdr.Read())
			{
				INVTransferLineBatch obj = new INVTransferLineBatch();
				PopulateObjectFromReader(obj,rdr);
				list.Add(obj);
			}
			return list;
			
		}
		/// <summary>
		/// This method will return a list of objects representing the specified number of entries from the specified record number in the table 
		/// using the value of the field specified
		/// </summary>
		///
		/// <param name="field" type="string">Field of the class INVTransferLineBatch</param>
		/// <param name="fieldValue" type="object">Value for the field specified.</param>
		/// <param name="fieldValue2" type="object">Value for the field specified.</param>
		/// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
		/// <param name="orderByStatement" type="string">The field value to number.</param>
		/// <param name="pageSize" type="int">Number of records returned.</param>
		/// <param name="skipPages" type="int">The number of missing pages.</param>
		///
		/// <returns>List of object of class INVTransferLineBatch in the form of an object of class INVTransferLineBatchCollection</returns>
		public INVTransferLineBatchCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement)
		{
			INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();
			foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement))
			{
				_iNVTransferLineBatchWCF = new INVTransferLineBatch();
				
				_iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
				_iNVTransferLineBatchWCF.TransferLineID = _iNVTransferLineBatch.TransferLineID;
				_iNVTransferLineBatchWCF.BatchID = _iNVTransferLineBatch.BatchID;
				_iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;
				
				iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
			}
			return iNVTransferLineBatchCollection;
		}
		/// <summary>
		/// This method will return a list of objects representing the specified number of entries from the specified record number in the table.
		/// </summary>
		///
		/// <param name="pageSize" type="int">Number of records returned.</param>
		/// <param name="skipPages" type="int">The number of missing pages.</param>
		/// <param name="orderByStatement" type="string">The field value to number.</param>
		///
		/// <returns>list of objects of class INVTransferLineBatch in the form of an object of class INVTransferLineBatchCollection </returns>
		public INVTransferLineBatchCollection SelectAllPaged(int? pageSize, int? skipPages, string orderByStatement)
		{
			INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();
			foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectAllPaged(pageSize, skipPages, orderByStatement))
			{
				_iNVTransferLineBatchWCF = new INVTransferLineBatch();
				
				_iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
				_iNVTransferLineBatchWCF.TransferLineID = _iNVTransferLineBatch.TransferLineID;
				_iNVTransferLineBatchWCF.BatchID = _iNVTransferLineBatch.BatchID;
				_iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;
				
				iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
			}
			return iNVTransferLineBatchCollection;
		}
		/// <summary>
		/// This method will get row(s) from the database using the value of the field specified
		/// </summary>
		///
		/// <param name="field" type="string">Field of the class INVTransferLineBatch</param>
		/// <param name="fieldValue" type="object">Value for the field specified.</param>
		/// <param name="fieldValue2" type="object">Value for the field specified.</param>
		/// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
		///
		/// <returns>List of object of class INVTransferLineBatch in the form of an object of class INVTransferLineBatchCollection</returns>
		public INVTransferLineBatchCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation)
		{
			INVTransferLineBatchCollection iNVTransferLineBatchCollection = new INVTransferLineBatchCollection();
			foreach (POS.DataLayer.INVTransferLineBatch _iNVTransferLineBatch in POS.DataLayer.INVTransferLineBatchBase.SelectByField(field, fieldValue, fieldValue2, typeOperation))
			{
				_iNVTransferLineBatchWCF = new INVTransferLineBatch();
				
				_iNVTransferLineBatchWCF.TransferLineBatchID = _iNVTransferLineBatch.TransferLineBatchID;
				_iNVTransferLineBatchWCF.TransferLineID = _iNVTransferLineBatch.TransferLineID;
				_iNVTransferLineBatchWCF.BatchID = _iNVTransferLineBatch.BatchID;
				_iNVTransferLineBatchWCF.Qty = _iNVTransferLineBatch.Qty;
				
				iNVTransferLineBatchCollection.Add(_iNVTransferLineBatchWCF);
			}
			return iNVTransferLineBatchCollection;
		}