///<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> /// 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 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; 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; 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; vUserRoleCollection.Add(_vUserRoleWCF); } return(vUserRoleCollection); }
/// <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; vUserRoleCollection.Add(_vUserRoleWCF); } return(vUserRoleCollection); }