/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="VUserRolePrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class VUserRole</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 1/3/2015 2:37:33 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static VUserRole SelectOne(VUserRolePrimaryKey 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_VUserRoles_SelectbyPrimaryKey", ref ExecutionState); if (dr.Read()) { VUserRole obj = new VUserRole(); 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="vUserRole" type="VUserRole">This VUserRole will be updated in the database.</param> /// /// <returns>True if succeeded</returns> public bool Update(VUserRole vUserRole) { _vUserRole = POS.DataLayer.VUserRole.SelectOne(new POS.DataLayer.VUserRolePrimaryKey(vUserRole.UserID, vUserRole.GroupID, vUserRole.Expr1)); _vUserRole.GroupName = vUserRole.GroupName; _vUserRole.RoleName = vUserRole.RoleName; _vUserRole.RolePath = vUserRole.RolePath; return(_vUserRole.Update()); }
/// <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 VUserRoleCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 1/3/2015 2:37:33 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static VUserRoleCollection PopulateObjectsFromReader(IDataReader rdr) { VUserRoleCollection list = new VUserRoleCollection(); while (rdr.Read()) { VUserRole obj = new VUserRole(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } return(list); }
/// <summary> /// This method will insert one new row into the database using the property Information /// </summary> /// /// <param name="vUserRole" type="VUserRole">This VUserRole will be inserted in the database.</param> /// /// <returns>True if succeeded</returns> public bool Insert(VUserRole vUserRole) { _vUserRole = new POS.DataLayer.VUserRole(); _vUserRole.UserID = vUserRole.UserID; _vUserRole.GroupID = vUserRole.GroupID; _vUserRole.GroupName = vUserRole.GroupName; _vUserRole.RoleName = vUserRole.RoleName; _vUserRole.RolePath = vUserRole.RolePath; _vUserRole.Expr1 = vUserRole.Expr1; return(_vUserRole.Insert()); }
/// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="VUserRolePrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class VUserRole</returns> public VUserRole SelectOne(VUserRolePrimaryKey pk) { _vUserRoleWCF = new VUserRole(); _vUserRole = POS.DataLayer.VUserRoleBase.SelectOne(new POS.DataLayer.VUserRolePrimaryKey(pk.UserID, pk.GroupID, pk.Expr1)); _vUserRoleWCF.UserID = _vUserRole.UserID; _vUserRoleWCF.GroupID = _vUserRole.GroupID; _vUserRoleWCF.GroupName = _vUserRole.GroupName; _vUserRoleWCF.RoleName = _vUserRole.RoleName; _vUserRoleWCF.RolePath = _vUserRole.RolePath; _vUserRoleWCF.Expr1 = _vUserRole.Expr1; return(_vUserRoleWCF); }
/// <summary> /// This method will Delete row(s) from the database using the value of the field specified /// <summary> /// This method will return an object representing the record matching the primary key information specified. /// </summary> /// /// <param name="pk" type="VUserRolePrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class VUserRole</returns> public VUserRole SelectOne(VUserRolePrimaryKey pk) { _vUserRoleWCF = new VUserRole(); _vUserRole = POS.DataLayer.VUserRoleBase.SelectOne(new POS.DataLayer.VUserRolePrimaryKey(pk.UserID, pk.GroupID, pk.Expr1)); _vUserRoleWCF.UserID = _vUserRole.UserID; _vUserRoleWCF.GroupID = _vUserRole.GroupID; _vUserRoleWCF.GroupName = _vUserRole.GroupName; _vUserRoleWCF.RoleName = _vUserRole.RoleName; _vUserRoleWCF.RolePath = _vUserRole.RolePath; _vUserRoleWCF.Expr1 = _vUserRole.Expr1; _vUserRoleWCF.MenuButton = _vUserRole.MenuButton; return _vUserRoleWCF; }
/// <summary> /// This method will return a list of objects representing all records in the table. /// </summary> /// /// <returns>list of objects of class VUserRole in the form of object of VUserRoleCollection </returns> public VUserRoleCollection SelectAll() { VUserRoleCollection vUserRoleCollection = new VUserRoleCollection(); foreach (POS.DataLayer.VUserRole _vUserRole in POS.DataLayer.VUserRoleBase.SelectAll()) { _vUserRoleWCF = new VUserRole(); _vUserRoleWCF.UserID = _vUserRole.UserID; _vUserRoleWCF.GroupID = _vUserRole.GroupID; _vUserRoleWCF.GroupName = _vUserRole.GroupName; _vUserRoleWCF.RoleName = _vUserRole.RoleName; _vUserRoleWCF.RolePath = _vUserRole.RolePath; _vUserRoleWCF.Expr1 = _vUserRole.Expr1; _vUserRoleWCF.MenuButton = _vUserRole.MenuButton; vUserRoleCollection.Add(_vUserRoleWCF); } return vUserRoleCollection; }
/// <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 VUserRoleCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 1/3/2015 2:37:33 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static VUserRoleCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { VUserRoleCollection list = new VUserRoleCollection(); if (rdr.Read()) { VUserRole obj = new VUserRole(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new VUserRole(); 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 VUserRoleCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 5/2/2015 4:13:15 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static VUserRoleCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { VUserRoleCollection list = new VUserRoleCollection(); if (rdr.Read()) { VUserRole obj = new VUserRole(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new VUserRole(); 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 VUserRoleCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 5/2/2015 4:13:15 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static VUserRoleCollection PopulateObjectsFromReader(IDataReader rdr) { VUserRoleCollection list = new VUserRoleCollection(); while (rdr.Read()) { VUserRole obj = new VUserRole(); 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="VUserRolePrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class VUserRole</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 5/2/2015 4:13:15 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static VUserRole SelectOne(VUserRolePrimaryKey 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_VUserRoles_SelectbyPrimaryKey", ref ExecutionState); if (dr.Read()) { VUserRole obj=new VUserRole(); 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 /// </summary> /// /// <param name="field" type="string">Field of the class VUserRole</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 VUserRole in the form of an object of class VUserRoleCollection</returns> public VUserRoleCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation) { VUserRoleCollection vUserRoleCollection = new VUserRoleCollection(); foreach (POS.DataLayer.VUserRole _vUserRole in POS.DataLayer.VUserRoleBase.SelectByField(field, fieldValue, fieldValue2, typeOperation)) { _vUserRoleWCF = new VUserRole(); _vUserRoleWCF.UserID = _vUserRole.UserID; _vUserRoleWCF.GroupID = _vUserRole.GroupID; _vUserRoleWCF.GroupName = _vUserRole.GroupName; _vUserRoleWCF.RoleName = _vUserRole.RoleName; _vUserRoleWCF.RolePath = _vUserRole.RolePath; _vUserRoleWCF.Expr1 = _vUserRole.Expr1; _vUserRoleWCF.MenuButton = _vUserRole.MenuButton; vUserRoleCollection.Add(_vUserRoleWCF); } return vUserRoleCollection; }
/// <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 VUserRole</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 VUserRole in the form of an object of class VUserRoleCollection</returns> public VUserRoleCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement) { VUserRoleCollection vUserRoleCollection = new VUserRoleCollection(); foreach (POS.DataLayer.VUserRole _vUserRole in POS.DataLayer.VUserRoleBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement)) { _vUserRoleWCF = new VUserRole(); _vUserRoleWCF.UserID = _vUserRole.UserID; _vUserRoleWCF.GroupID = _vUserRole.GroupID; _vUserRoleWCF.GroupName = _vUserRole.GroupName; _vUserRoleWCF.RoleName = _vUserRole.RoleName; _vUserRoleWCF.RolePath = _vUserRole.RolePath; _vUserRoleWCF.Expr1 = _vUserRole.Expr1; _vUserRoleWCF.MenuButton = _vUserRole.MenuButton; vUserRoleCollection.Add(_vUserRoleWCF); } return vUserRoleCollection; }
/// <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 VUserRole in the form of an object of class VUserRoleCollection </returns> public VUserRoleCollection SelectAllPaged(int? pageSize, int? skipPages, string orderByStatement) { VUserRoleCollection vUserRoleCollection = new VUserRoleCollection(); foreach (POS.DataLayer.VUserRole _vUserRole in POS.DataLayer.VUserRoleBase.SelectAllPaged(pageSize, skipPages, orderByStatement)) { _vUserRoleWCF = new VUserRole(); _vUserRoleWCF.UserID = _vUserRole.UserID; _vUserRoleWCF.GroupID = _vUserRole.GroupID; _vUserRoleWCF.GroupName = _vUserRole.GroupName; _vUserRoleWCF.RoleName = _vUserRole.RoleName; _vUserRoleWCF.RolePath = _vUserRole.RolePath; _vUserRoleWCF.Expr1 = _vUserRole.Expr1; _vUserRoleWCF.MenuButton = _vUserRole.MenuButton; vUserRoleCollection.Add(_vUserRoleWCF); } return vUserRoleCollection; }