Ejemplo n.º 1
0
 public bool SaveProductStockWithBatches(INVBatchCollection iNVBatchCollection, int ProductStockID)
 {
     bool ExecutionState = false;
     foreach (INVBatch iNVBatch in iNVBatchCollection)
     {
         POS.DataLayer.INVBatch _iNVBatch = new DataLayer.INVBatch();
         _iNVBatch.BatchNumber = iNVBatch.BatchNumber;
         _iNVBatch.ExpiryDate = iNVBatch.ExpiryDate;
         _iNVBatch.ProductStockID = ProductStockID;
         _iNVBatch.Qty = iNVBatch.Qty;
         ExecutionState = _iNVBatch.InsertProductStockBatches(GlobalVariables.CurrentUser.UserID, _iNVBatch);
     }
     return ExecutionState;
 }
Ejemplo n.º 2
0
        public bool SaveProductStockWithBatches(INVBatchCollection iNVBatchCollection, int ProductStockID)
        {
            bool ExecutionState = false;

            foreach (INVBatch iNVBatch in iNVBatchCollection)
            {
                POS.DataLayer.INVBatch _iNVBatch = new DataLayer.INVBatch();
                _iNVBatch.BatchNumber    = iNVBatch.BatchNumber;
                _iNVBatch.ExpiryDate     = iNVBatch.ExpiryDate;
                _iNVBatch.ProductStockID = ProductStockID;
                _iNVBatch.Qty            = iNVBatch.Qty;
                ExecutionState           = _iNVBatch.InsertProductStockBatches(GlobalVariables.CurrentUser.UserID, _iNVBatch);
            }
            return(ExecutionState);
        }
Ejemplo n.º 3
0
		/// <summary>
		/// This method will return a list of objects representing all records in the table.
		/// </summary>
		///
		/// <returns>list of objects of class INVBatch in the form of object of INVBatchCollection </returns>
		public INVBatchCollection SelectAll()
		{
			INVBatchCollection iNVBatchCollection = new INVBatchCollection();
			foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectAll())
			{
				_iNVBatchWCF = new INVBatch();
				
				_iNVBatchWCF.BatchID = _iNVBatch.BatchID;
				_iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
				_iNVBatchWCF.ExpiryDate = _iNVBatch.ExpiryDate;
				
				iNVBatchCollection.Add(_iNVBatchWCF);
			}
			return iNVBatchCollection;
		}
Ejemplo n.º 4
0
        /// <summary>
        /// This method will return a list of objects representing all records in the table.
        /// </summary>
        ///
        /// <returns>list of objects of class INVBatch in the form of object of INVBatchCollection </returns>
        public INVBatchCollection SelectAll()
        {
            INVBatchCollection iNVBatchCollection = new INVBatchCollection();

            foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectAll())
            {
                _iNVBatchWCF = new INVBatch();

                _iNVBatchWCF.BatchID     = _iNVBatch.BatchID;
                _iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
                _iNVBatchWCF.ExpiryDate  = _iNVBatch.ExpiryDate;

                iNVBatchCollection.Add(_iNVBatchWCF);
            }
            return(iNVBatchCollection);
        }
Ejemplo n.º 5
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 INVBatch</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 INVBatch in the form of an object of class INVBatchCollection</returns>
        public INVBatchCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement)
        {
            INVBatchCollection iNVBatchCollection = new INVBatchCollection();

            foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement))
            {
                _iNVBatchWCF = new INVBatch();

                _iNVBatchWCF.BatchID     = _iNVBatch.BatchID;
                _iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
                _iNVBatchWCF.ExpiryDate  = _iNVBatch.ExpiryDate;

                iNVBatchCollection.Add(_iNVBatchWCF);
            }
            return(iNVBatchCollection);
        }
Ejemplo n.º 6
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 INVBatch in the form of an object of class INVBatchCollection </returns>
        public INVBatchCollection SelectAllPaged(int?pageSize, int?skipPages, string orderByStatement)
        {
            INVBatchCollection iNVBatchCollection = new INVBatchCollection();

            foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectAllPaged(pageSize, skipPages, orderByStatement))
            {
                _iNVBatchWCF = new INVBatch();

                _iNVBatchWCF.BatchID     = _iNVBatch.BatchID;
                _iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
                _iNVBatchWCF.ExpiryDate  = _iNVBatch.ExpiryDate;

                iNVBatchCollection.Add(_iNVBatchWCF);
            }
            return(iNVBatchCollection);
        }
Ejemplo n.º 7
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 INVBatch</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 INVBatch in the form of an object of class INVBatchCollection</returns>
        public INVBatchCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation)
        {
            INVBatchCollection iNVBatchCollection = new INVBatchCollection();

            foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectByField(field, fieldValue, fieldValue2, typeOperation))
            {
                _iNVBatchWCF = new INVBatch();

                _iNVBatchWCF.BatchID     = _iNVBatch.BatchID;
                _iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
                _iNVBatchWCF.ExpiryDate  = _iNVBatch.ExpiryDate;

                iNVBatchCollection.Add(_iNVBatchWCF);
            }
            return(iNVBatchCollection);
        }
Ejemplo n.º 8
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 INVBatch</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 INVBatch in the form of an object of class INVBatchCollection</returns>
		public INVBatchCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement)
		{
			INVBatchCollection iNVBatchCollection = new INVBatchCollection();
			foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement))
			{
				_iNVBatchWCF = new INVBatch();
				
				_iNVBatchWCF.BatchID = _iNVBatch.BatchID;
				_iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
				_iNVBatchWCF.ExpiryDate = _iNVBatch.ExpiryDate;
				
				iNVBatchCollection.Add(_iNVBatchWCF);
			}
			return iNVBatchCollection;
		}
Ejemplo n.º 9
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 INVBatch in the form of an object of class INVBatchCollection </returns>
		public INVBatchCollection SelectAllPaged(int? pageSize, int? skipPages, string orderByStatement)
		{
			INVBatchCollection iNVBatchCollection = new INVBatchCollection();
			foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectAllPaged(pageSize, skipPages, orderByStatement))
			{
				_iNVBatchWCF = new INVBatch();
				
				_iNVBatchWCF.BatchID = _iNVBatch.BatchID;
				_iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
				_iNVBatchWCF.ExpiryDate = _iNVBatch.ExpiryDate;
				
				iNVBatchCollection.Add(_iNVBatchWCF);
			}
			return iNVBatchCollection;
		}
Ejemplo n.º 10
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 INVBatch</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 INVBatch in the form of an object of class INVBatchCollection</returns>
		public INVBatchCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation)
		{
			INVBatchCollection iNVBatchCollection = new INVBatchCollection();
			foreach (POS.DataLayer.INVBatch _iNVBatch in POS.DataLayer.INVBatchBase.SelectByField(field, fieldValue, fieldValue2, typeOperation))
			{
				_iNVBatchWCF = new INVBatch();
				
				_iNVBatchWCF.BatchID = _iNVBatch.BatchID;
				_iNVBatchWCF.BatchNumber = _iNVBatch.BatchNumber;
				_iNVBatchWCF.ExpiryDate = _iNVBatch.ExpiryDate;
				
				iNVBatchCollection.Add(_iNVBatchWCF);
			}
			return iNVBatchCollection;
		}
Ejemplo n.º 11
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 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;
			}
			
		}
Ejemplo n.º 12
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 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;
			
		}