/// <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="BDProductGroupPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class BDProductGroup</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:55:55 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static BDProductGroup SelectOneWithBDProductUsingProductGroupID(BDProductGroupPrimaryKey pk) { DatabaseHelper oDatabaseHelper = new DatabaseHelper(); bool ExecutionState = false; BDProductGroup 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_BDProductGroup_SelectOneWithBDProductUsingProductGroupID", ref ExecutionState); if (dr.Read()) { obj = new BDProductGroup(); PopulateObjectFromReader(obj, dr); dr.NextResult(); //Get the child records. obj.BDProductCollectionUsingProductGroupID = BDProduct.PopulateObjectsFromReader(dr); } dr.Close(); oDatabaseHelper.Dispose(); return(obj); }
/// <summary> /// This method will insert one new row into the database using the property Information /// </summary> /// /// <param name="bDProductGroup" type="BDProductGroup">This BDProductGroup will be inserted in the database.</param> /// /// <returns>True if succeeded</returns> public bool Insert(BDProductGroup bDProductGroup) { _bDProductGroup = new POS.DataLayer.BDProductGroup(); _bDProductGroup.ProductGroupID = bDProductGroup.ProductGroupID; _bDProductGroup.ProductGroupName = bDProductGroup.ProductGroupName; _bDProductGroup.Notes = bDProductGroup.Notes; return(_bDProductGroup.Insert()); }
///<summary> /// This method will update one new row into the database using the property Information /// </summary> /// /// <param name="bDProductGroup" type="BDProductGroup">This BDProductGroup will be updated in the database.</param> /// /// <returns>True if succeeded</returns> public bool Update(BDProductGroup bDProductGroup) { _bDProductGroup = POS.DataLayer.BDProductGroup.SelectOne(new POS.DataLayer.BDProductGroupPrimaryKey(bDProductGroup.ProductGroupID)); _bDProductGroup.ProductGroupName = bDProductGroup.ProductGroupName; _bDProductGroup.Notes = bDProductGroup.Notes; return(_bDProductGroup.Update()); }
/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="BDProductGroupPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class BDProductGroup</returns> public BDProductGroup SelectOne(BDProductGroupPrimaryKey pk) { _bDProductGroupWCF = new BDProductGroup(); _bDProductGroup = POS.DataLayer.BDProductGroupBase.SelectOne(new POS.DataLayer.BDProductGroupPrimaryKey(pk.ProductGroupID)); _bDProductGroupWCF.ProductGroupID = _bDProductGroup.ProductGroupID; _bDProductGroupWCF.ProductGroupName = _bDProductGroup.ProductGroupName; _bDProductGroupWCF.Notes = _bDProductGroup.Notes; return(_bDProductGroupWCF); }
/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="BDProductGroupPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class BDProductGroup</returns> public BDProductGroup SelectOne(BDProductGroupPrimaryKey pk) { _bDProductGroupWCF = new BDProductGroup(); _bDProductGroup = POS.DataLayer.BDProductGroupBase.SelectOne(new POS.DataLayer.BDProductGroupPrimaryKey(pk.ProductGroupID)); _bDProductGroupWCF.ProductGroupID = _bDProductGroup.ProductGroupID; _bDProductGroupWCF.ProductGroupName = _bDProductGroup.ProductGroupName; _bDProductGroupWCF.Notes = _bDProductGroup.Notes; return _bDProductGroupWCF; }
/// <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 BDProductGroupCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:55:55 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static BDProductGroupCollection PopulateObjectsFromReader(IDataReader rdr) { BDProductGroupCollection list = new BDProductGroupCollection(); while (rdr.Read()) { BDProductGroup obj = new BDProductGroup(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } return(list); }
/// <summary> /// This method will return a list of objects representing all records in the table. /// </summary> /// /// <returns>list of objects of class BDProductGroup in the form of object of BDProductGroupCollection </returns> public BDProductGroupCollection SelectAll() { BDProductGroupCollection bDProductGroupCollection = new BDProductGroupCollection(); foreach (POS.DataLayer.BDProductGroup _bDProductGroup in POS.DataLayer.BDProductGroupBase.SelectAll()) { _bDProductGroupWCF = new BDProductGroup(); _bDProductGroupWCF.ProductGroupID = _bDProductGroup.ProductGroupID; _bDProductGroupWCF.ProductGroupName = _bDProductGroup.ProductGroupName; _bDProductGroupWCF.Notes = _bDProductGroup.Notes; bDProductGroupCollection.Add(_bDProductGroupWCF); } return bDProductGroupCollection; }
/// <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 BDProductGroupCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:55:55 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static BDProductGroupCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { BDProductGroupCollection list = new BDProductGroupCollection(); if (rdr.Read()) { BDProductGroup obj = new BDProductGroup(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new BDProductGroup(); 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 BDProductGroupCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 3/7/2015 2:37:07 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static BDProductGroupCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { BDProductGroupCollection list = new BDProductGroupCollection(); if (rdr.Read()) { BDProductGroup obj = new BDProductGroup(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new BDProductGroup(); 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 BDProductGroupCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 3/7/2015 2:37:07 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static BDProductGroupCollection PopulateObjectsFromReader(IDataReader rdr) { BDProductGroupCollection list = new BDProductGroupCollection(); while (rdr.Read()) { BDProductGroup obj = new BDProductGroup(); PopulateObjectFromReader(obj,rdr); list.Add(obj); } return list; }
/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="BDProductGroupPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class BDProductGroup</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 3/7/2015 2:37:07 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static BDProductGroup SelectOne(BDProductGroupPrimaryKey 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_BDProductGroup_SelectbyPrimaryKey", ref ExecutionState); if (dr.Read()) { BDProductGroup obj=new BDProductGroup(); PopulateObjectFromReader(obj,dr); dr.Close(); oDatabaseHelper.Dispose(); return obj; } else { dr.Close(); oDatabaseHelper.Dispose(); return null; } }
///<summary> /// This method will update one new row into the database using the property Information /// </summary> /// /// <param name="bDProductGroup" type="BDProductGroup">This BDProductGroup will be updated in the database.</param> /// /// <returns>True if succeeded</returns> public bool Update(BDProductGroup bDProductGroup) { _bDProductGroup=POS.DataLayer.BDProductGroup.SelectOne(new POS.DataLayer.BDProductGroupPrimaryKey(bDProductGroup.ProductGroupID)); _bDProductGroup.ProductGroupName=bDProductGroup.ProductGroupName; _bDProductGroup.Notes=bDProductGroup.Notes; return _bDProductGroup.Update(); }
/// <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 BDProductGroup</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 BDProductGroup in the form of an object of class BDProductGroupCollection</returns> public BDProductGroupCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement) { BDProductGroupCollection bDProductGroupCollection = new BDProductGroupCollection(); foreach (POS.DataLayer.BDProductGroup _bDProductGroup in POS.DataLayer.BDProductGroupBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement)) { _bDProductGroupWCF = new BDProductGroup(); _bDProductGroupWCF.ProductGroupID = _bDProductGroup.ProductGroupID; _bDProductGroupWCF.ProductGroupName = _bDProductGroup.ProductGroupName; _bDProductGroupWCF.Notes = _bDProductGroup.Notes; bDProductGroupCollection.Add(_bDProductGroupWCF); } return bDProductGroupCollection; }
/// <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 BDProductGroup in the form of an object of class BDProductGroupCollection </returns> public BDProductGroupCollection SelectAllPaged(int? pageSize, int? skipPages, string orderByStatement) { BDProductGroupCollection bDProductGroupCollection = new BDProductGroupCollection(); foreach (POS.DataLayer.BDProductGroup _bDProductGroup in POS.DataLayer.BDProductGroupBase.SelectAllPaged(pageSize, skipPages, orderByStatement)) { _bDProductGroupWCF = new BDProductGroup(); _bDProductGroupWCF.ProductGroupID = _bDProductGroup.ProductGroupID; _bDProductGroupWCF.ProductGroupName = _bDProductGroup.ProductGroupName; _bDProductGroupWCF.Notes = _bDProductGroup.Notes; bDProductGroupCollection.Add(_bDProductGroupWCF); } return bDProductGroupCollection; }
/// <summary> /// This method will insert one new row into the database using the property Information /// </summary> /// /// <param name="bDProductGroup" type="BDProductGroup">This BDProductGroup will be inserted in the database.</param> /// /// <returns>True if succeeded</returns> public bool Insert(BDProductGroup bDProductGroup) { _bDProductGroup = new POS.DataLayer.BDProductGroup(); _bDProductGroup.ProductGroupID=bDProductGroup.ProductGroupID; _bDProductGroup.ProductGroupName=bDProductGroup.ProductGroupName; _bDProductGroup.Notes=bDProductGroup.Notes; return _bDProductGroup.Insert(); }
/// <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 BDProductGroup</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 BDProductGroup in the form of an object of class BDProductGroupCollection</returns> public BDProductGroupCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation) { BDProductGroupCollection bDProductGroupCollection = new BDProductGroupCollection(); foreach (POS.DataLayer.BDProductGroup _bDProductGroup in POS.DataLayer.BDProductGroupBase.SelectByField(field, fieldValue, fieldValue2, typeOperation)) { _bDProductGroupWCF = new BDProductGroup(); _bDProductGroupWCF.ProductGroupID = _bDProductGroup.ProductGroupID; _bDProductGroupWCF.ProductGroupName = _bDProductGroup.ProductGroupName; _bDProductGroupWCF.Notes = _bDProductGroup.Notes; bDProductGroupCollection.Add(_bDProductGroupWCF); } return bDProductGroupCollection; }