![]() |
Provides simplified data access features to perform SCRUD operation on the database table "hrm.resignations". More...
Public Member Functions | |
| long | Count () |
| Performs SQL count on the table "hrm.resignations". More... | |
| IEnumerable< MixERP.Net.Entities.HRM.Resignation > | Get () |
| Executes a select query on the table "hrm.resignations" to return a all instances of the "Resignation" class to export. More... | |
| MixERP.Net.Entities.HRM.Resignation | Get (int resignationId) |
| Executes a select query on the table "hrm.resignations" with a where filter on the column "resignation_id" to return a single instance of the "Resignation" class. More... | |
| IEnumerable< MixERP.Net.Entities.HRM.Resignation > | Get (int[] resignationIds) |
| Executes a select query on the table "hrm.resignations" with a where filter on the column "resignation_id" to return a multiple instances of the "Resignation" class. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields (string resourceId) |
| Custom fields are user defined form elements for hrm.resignations. More... | |
| IEnumerable< DisplayField > | GetDisplayFields () |
| Displayfields provide a minimal name/value context for data binding the row collection of hrm.resignations. More... | |
| void | AddOrEdit (MixERP.Net.Entities.HRM.Resignation resignation, List< EntityParser.CustomField > customFields) |
| Inserts or updates the instance of Resignation class on the database table "hrm.resignations". More... | |
| object | Add (MixERP.Net.Entities.HRM.Resignation resignation) |
| Inserts the instance of Resignation class on the database table "hrm.resignations". More... | |
| List< object > | BulkImport (List< MixERP.Net.Entities.HRM.Resignation > resignations) |
| Inserts or updates multiple instances of Resignation class on the database table "hrm.resignations"; More... | |
| void | Update (MixERP.Net.Entities.HRM.Resignation resignation, int resignationId) |
| Updates the row of the table "hrm.resignations" with an instance of "Resignation" class against the primary key value. More... | |
| void | Delete (int resignationId) |
| Deletes the row of the table "hrm.resignations" against the primary key value. More... | |
| IEnumerable< MixERP.Net.Entities.HRM.Resignation > | GetPagedResult () |
| Performs a select statement on table "hrm.resignations" producing a paged result of 25. More... | |
| IEnumerable< MixERP.Net.Entities.HRM.Resignation > | GetPagedResult (long pageNumber) |
| Performs a select statement on table "hrm.resignations" producing a paged result of 25. More... | |
| long | CountWhere (List< EntityParser.Filter > filters) |
| Performs a filtered count on table "hrm.resignations". More... | |
| IEnumerable< MixERP.Net.Entities.HRM.Resignation > | GetWhere (long pageNumber, List< EntityParser.Filter > filters) |
| Performs a filtered select statement on table "hrm.resignations" producing a paged result of 25. More... | |
| long | CountFiltered (string filterName) |
| Performs a filtered count on table "hrm.resignations". More... | |
| IEnumerable< MixERP.Net.Entities.HRM.Resignation > | GetFiltered (long pageNumber, string filterName) |
| Performs a filtered select statement on table "hrm.resignations" producing a paged result of 25. More... | |
Public Member Functions inherited from PetaPoco.DbAccess | |
| void | Validate (AccessTypeEnum type, long loginId, bool noException) |
| Validates application user access rights to execute the function. More... | |
Public Attributes | |
| override string | ObjectNamespace => "hrm" |
| The schema of this table. Returns literal "hrm". More... | |
| override string | ObjectName => "resignations" |
| The schema unqualified name of this table. Returns literal "resignations". More... | |
Properties | |
| long | LoginId [get, set] |
| Login id of application user accessing this table. More... | |
| int | UserId [get, set] |
| User id of application user accessing this table. More... | |
| string | Catalog [get, set] |
| The name of the database on which queries are being executed to. More... | |
Properties inherited from PetaPoco.DbAccess | |
| abstract string | ObjectNamespace [get] |
| abstract string | ObjectName [get] |
| bool | HasAccess [get] |
| bool | Validated [get] |
| bool | SkipValidation [get, set] |
Properties inherited from PetaPoco.IDBAccess | |
| bool | HasAccess [get] |
Provides simplified data access features to perform SCRUD operation on the database table "hrm.resignations".
| object MixERP.Net.Core.Modules.HRM.Data.Resignation.Add | ( | MixERP.Net.Entities.HRM.Resignation | resignation | ) |
Inserts the instance of Resignation class on the database table "hrm.resignations".
| resignation | The instance of "Resignation" class to insert. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Core.Modules.HRM.Data.Resignation.AddOrEdit | ( | MixERP.Net.Entities.HRM.Resignation | resignation, |
| List< EntityParser.CustomField > | customFields | ||
| ) |
Inserts or updates the instance of Resignation class on the database table "hrm.resignations".
| resignation | The instance of "Resignation" class to insert or update. |
| customFields | The custom field collection. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| List<object> MixERP.Net.Core.Modules.HRM.Data.Resignation.BulkImport | ( | List< MixERP.Net.Entities.HRM.Resignation > | resignations | ) |
Inserts or updates multiple instances of Resignation class on the database table "hrm.resignations";
| resignations | List of "Resignation" class to import. |
| long MixERP.Net.Core.Modules.HRM.Data.Resignation.Count | ( | ) |
Performs SQL count on the table "hrm.resignations".
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| long MixERP.Net.Core.Modules.HRM.Data.Resignation.CountFiltered | ( | string | filterName | ) |
Performs a filtered count on table "hrm.resignations".
| filterName | The named filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| long MixERP.Net.Core.Modules.HRM.Data.Resignation.CountWhere | ( | List< EntityParser.Filter > | filters | ) |
Performs a filtered count on table "hrm.resignations".
| filters | The list of filter conditions. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Core.Modules.HRM.Data.Resignation.Delete | ( | int | resignationId | ) |
Deletes the row of the table "hrm.resignations" against the primary key value.
| resignationId | The value of the column "resignation_id" which will be deleted. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.HRM.Resignation> MixERP.Net.Core.Modules.HRM.Data.Resignation.Get | ( | ) |
Executes a select query on the table "hrm.resignations" to return a all instances of the "Resignation" class to export.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| MixERP.Net.Entities.HRM.Resignation MixERP.Net.Core.Modules.HRM.Data.Resignation.Get | ( | int | resignationId | ) |
Executes a select query on the table "hrm.resignations" with a where filter on the column "resignation_id" to return a single instance of the "Resignation" class.
| resignationId | The column "resignation_id" parameter used on where filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.HRM.Resignation> MixERP.Net.Core.Modules.HRM.Data.Resignation.Get | ( | int[] | resignationIds | ) |
Executes a select query on the table "hrm.resignations" with a where filter on the column "resignation_id" to return a multiple instances of the "Resignation" class.
| resignationIds | Array of column "resignation_id" parameter used on where filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Core.Modules.HRM.Data.Resignation.GetCustomFields | ( | string | resourceId | ) |
Custom fields are user defined form elements for hrm.resignations.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<DisplayField> MixERP.Net.Core.Modules.HRM.Data.Resignation.GetDisplayFields | ( | ) |
Displayfields provide a minimal name/value context for data binding the row collection of hrm.resignations.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.HRM.Resignation> MixERP.Net.Core.Modules.HRM.Data.Resignation.GetFiltered | ( | long | pageNumber, |
| string | filterName | ||
| ) |
Performs a filtered select statement on table "hrm.resignations" producing a paged result of 25.
| pageNumber | Enter the page number to produce the paged result. |
| filterName | The named filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.HRM.Resignation> MixERP.Net.Core.Modules.HRM.Data.Resignation.GetPagedResult | ( | ) |
Performs a select statement on table "hrm.resignations" producing a paged result of 25.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.HRM.Resignation> MixERP.Net.Core.Modules.HRM.Data.Resignation.GetPagedResult | ( | long | pageNumber | ) |
Performs a select statement on table "hrm.resignations" producing a paged result of 25.
| pageNumber | Enter the page number to produce the paged result. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.HRM.Resignation> MixERP.Net.Core.Modules.HRM.Data.Resignation.GetWhere | ( | long | pageNumber, |
| List< EntityParser.Filter > | filters | ||
| ) |
Performs a filtered select statement on table "hrm.resignations" producing a paged result of 25.
| pageNumber | Enter the page number to produce the paged result. |
| filters | The list of filter conditions. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Core.Modules.HRM.Data.Resignation.Update | ( | MixERP.Net.Entities.HRM.Resignation | resignation, |
| int | resignationId | ||
| ) |
Updates the row of the table "hrm.resignations" with an instance of "Resignation" class against the primary key value.
| resignation | The instance of "Resignation" class to update. |
| resignationId | The value of the column "resignation_id" which will be updated. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| override string MixERP.Net.Core.Modules.HRM.Data.Resignation.ObjectName => "resignations" |
The schema unqualified name of this table. Returns literal "resignations".
| override string MixERP.Net.Core.Modules.HRM.Data.Resignation.ObjectNamespace => "hrm" |
The schema of this table. Returns literal "hrm".
|
getset |
The name of the database on which queries are being executed to.
|
getset |
Login id of application user accessing this table.
|
getset |
User id of application user accessing this table.