コード例 #1
0
        /// <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="INVStockTypePrimaryKey">Primary Key information based on which data is to be fetched.</param>
        ///
        /// <returns>object of class INVProductStockCollection</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/27/2014 6:56:07 PM				Created function
        ///
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static INVProductStockCollection SelectAllByForeignKeyStockTypeID(INVStockTypePrimaryKey pk)
        {
            DatabaseHelper            oDatabaseHelper = new DatabaseHelper();
            bool                      ExecutionState  = false;
            INVProductStockCollection 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_INVProductStock_SelectAllByForeignKeyStockTypeID", ref ExecutionState);

            obj = new INVProductStockCollection();
            obj = INVProductStock.PopulateObjectsFromReaderWithCheckingReader(dr, oDatabaseHelper);

            dr.Close();
            oDatabaseHelper.Dispose();
            return(obj);
        }
コード例 #2
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 INVProductStockCollection</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/27/2014 6:56:07 PM		Created function
        ///
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static INVProductStockCollection PopulateObjectsFromReader(IDataReader rdr)
        {
            INVProductStockCollection list = new INVProductStockCollection();

            while (rdr.Read())
            {
                INVProductStock obj = new INVProductStock();
                PopulateObjectFromReader(obj, rdr);
                list.Add(obj);
            }
            return(list);
        }
コード例 #3
0
        /// <summary>
        /// This method will return a list of objects representing all records in the table.
        /// </summary>
        ///
        /// <returns>list of objects of class INVProductStock in the form of object of INVProductStockCollection </returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/27/2014 6:56:07 PM		Created function
        ///
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static INVProductStockCollection SelectAll()
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper();
            bool           ExecutionState  = false;

            // 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_INVProductStock_SelectAll", ref ExecutionState);
            INVProductStockCollection INVProductStockCollection = PopulateObjectsFromReader(dr);

            dr.Close();
            oDatabaseHelper.Dispose();
            return(INVProductStockCollection);
        }
コード例 #4
0
        public static INVProductStockCollection GetInventoryStock(int?ProductStockID, string productCode, string productName, bool?IsAcceptBatch, bool getWithBatch)
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper();
            bool           ExecutionState  = false;

            // The parameter '@dlgErrorCode' will contain the status after execution of the stored procedure.
            oDatabaseHelper.AddParameter("@ProductStockID", ProductStockID);
            oDatabaseHelper.AddParameter("@ProductCode", productCode);
            oDatabaseHelper.AddParameter("@ProductName", productName);
            oDatabaseHelper.AddParameter("@IsAcceptBatch", IsAcceptBatch);

            IDataReader dr = oDatabaseHelper.ExecuteReader("USP_GetInventoryStock", ref ExecutionState);
            INVProductStockCollection INVProductStockCollection = Fill(dr, getWithBatch);

            dr.Close();
            oDatabaseHelper.Dispose();
            return(INVProductStockCollection);
        }
コード例 #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.
        /// </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 INVProductStock in the form of object of INVProductStockCollection </returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/27/2014 6:56:07 PM		Created function
        ///
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static INVProductStockCollection SelectAllPaged(int?pageSize, int?skipPages, string orderByStatement)
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper();
            bool           ExecutionState  = false;

            // Pass the specified field and its value to the stored procedure.
            oDatabaseHelper.AddParameter("@PageSize", pageSize);
            oDatabaseHelper.AddParameter("@SkipPages", skipPages);
            oDatabaseHelper.AddParameter("@OrderByStatement", orderByStatement);

            // 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_INVProductStock_SelectAllPaged", ref ExecutionState);
            INVProductStockCollection INVProductStockCollection = PopulateObjectsFromReader(dr);

            dr.Close();
            oDatabaseHelper.Dispose();
            return(INVProductStockCollection);
        }
コード例 #6
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 INVProductStock</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 INVProductStock in the form of an object of class INVProductStockCollection</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/27/2014 6:56:07 PM		Created function
        ///
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static INVProductStockCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation)
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper();
            bool           ExecutionState  = false;

            // Pass the specified field and its value to the stored procedure.
            oDatabaseHelper.AddParameter("@Field", field);
            oDatabaseHelper.AddParameter("@Value", fieldValue);
            oDatabaseHelper.AddParameter("@Value2", fieldValue2);
            oDatabaseHelper.AddParameter("@Operation", OperationCollection.Operation[(int)typeOperation]);

            // 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_INVProductStock_SelectByField", ref ExecutionState);
            INVProductStockCollection INVProductStockCollection = PopulateObjectsFromReader(dr);

            dr.Close();
            oDatabaseHelper.Dispose();
            return(INVProductStockCollection);
        }
コード例 #7
0
ファイル: INVProductStock.cs プロジェクト: taiab/POS
        private static INVProductStockCollection Fill(IDataReader dr, bool getWithBatch)
        {
            INVProductStockCollection collection = new INVProductStockCollection();

            while (dr.Read())
            {
                INVProductStock obj = new INVProductStock();
                obj.ProductStockID = dr.GetInt32(dr.GetOrdinal(ALLINVProductStockFields.ProductStockID));
                obj.ProductID      = dr.GetInt32(dr.GetOrdinal(ALLINVProductStockFields.ProductID));
                obj.TotalQty       = dr.GetDecimal(dr.GetOrdinal(ALLINVProductStockFields.TotalQty));
                obj.StockTypeID    = dr.GetInt32(dr.GetOrdinal(ALLINVProductStockFields.StockTypeID));
                obj.ProductName    = dr.GetString(dr.GetOrdinal(ALLINVProductStockFields.ProductName));
                obj.StockType      = dr.GetString(dr.GetOrdinal(ALLINVProductStockFields.StockTypeName));
                if (!dr.IsDBNull(dr.GetOrdinal(ALLINVProductStockFields.ProductCode)))
                {
                    obj.ProductCode = dr.GetString(dr.GetOrdinal(ALLINVProductStockFields.ProductCode));
                }
                if (dr.GetOrdinal("IsAcceptBatch") != null)
                {
                    obj.IsAcceptBatch = dr.GetBoolean(dr.GetOrdinal("IsAcceptBatch"));
                }
                if (getWithBatch)
                {
                    if (dr.GetOrdinal(ALLINVProductStockFields.BatchNumber) != null)
                    {
                        obj.BatchNo = dr.GetString(dr.GetOrdinal(ALLINVProductStockFields.BatchNumber));
                    }
                    if (dr.GetOrdinal(ALLINVProductStockFields.ExpiryDate) != null)
                    {
                        obj.ExpiryDate = dr.GetDateTime(dr.GetOrdinal(ALLINVProductStockFields.ExpiryDate));
                    }
                    if (dr.GetOrdinal(ALLINVProductStockFields.BatchQty) != null)
                    {
                        obj.BatchQty = dr.GetDecimal(dr.GetOrdinal(ALLINVProductStockFields.BatchQty));
                    }
                }
                collection.Add(obj);
            }
            return(collection);
        }
コード例 #8
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 INVProductStockCollection</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/27/2014 6:56:07 PM		Created function
        ///
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static INVProductStockCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper)
        {
            INVProductStockCollection list = new INVProductStockCollection();

            if (rdr.Read())
            {
                INVProductStock obj = new INVProductStock();
                PopulateObjectFromReader(obj, rdr);
                list.Add(obj);
                while (rdr.Read())
                {
                    obj = new INVProductStock();
                    PopulateObjectFromReader(obj, rdr);
                    list.Add(obj);
                }
                oDatabaseHelper.Dispose();
                return(list);
            }
            else
            {
                oDatabaseHelper.Dispose();
                return(null);
            }
        }
コード例 #9
0
 public Enumerator(INVProductStockCollection t)
 {
     this.t = t;
 }