![]() |
Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Social Networks. More...
Public Member Functions | |
| EntityView | GetEntityView () |
| Creates meta information of "social network" entity. More... | |
| long | Count () |
| Counts the number of social networks. More... | |
| IEnumerable< MixERP.Net.Entities.Core.SocialNetwork > | Get () |
| Returns collection of social network for export. More... | |
| MixERP.Net.Entities.Core.SocialNetwork | Get (string socialNetworkName) |
| Returns an instance of social network. More... | |
| IEnumerable< MixERP.Net.Entities.Core.SocialNetwork > | Get ([FromUri] string[] socialNetworkNames) |
| IEnumerable< MixERP.Net.Entities.Core.SocialNetwork > | GetPagedResult () |
| Creates a paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName. More... | |
| IEnumerable< MixERP.Net.Entities.Core.SocialNetwork > | GetPagedResult (long pageNumber) |
| Creates a paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName. More... | |
| long | CountWhere ([FromBody]dynamic filters) |
| Counts the number of social networks using the supplied filter(s). More... | |
| IEnumerable< MixERP.Net.Entities.Core.SocialNetwork > | GetWhere (long pageNumber, [FromBody]dynamic filters) |
| Creates a filtered and paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName. More... | |
| long | CountFiltered (string filterName) |
| Counts the number of social networks using the supplied filter name. More... | |
| IEnumerable< MixERP.Net.Entities.Core.SocialNetwork > | GetFiltered (long pageNumber, string filterName) |
| Creates a filtered and paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName. More... | |
| IEnumerable< DisplayField > | GetDisplayFields () |
| Displayfield is a lightweight key/value collection of social networks. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields () |
| A custom field is a user defined field for social networks. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields (string resourceId) |
| A custom field is a user defined field for social networks. More... | |
| void | AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form) |
| Adds or edits your instance of SocialNetwork class. More... | |
| void | Add (MixERP.Net.Entities.Core.SocialNetwork socialNetwork) |
| Adds your instance of SocialNetwork class. More... | |
| void | Edit (string socialNetworkName, [FromBody] MixERP.Net.Entities.Core.SocialNetwork socialNetwork) |
| Edits existing record with your instance of SocialNetwork class. More... | |
| List< object > | BulkImport ([FromBody]dynamic collection) |
| Adds or edits multiple instances of SocialNetwork class. More... | |
| void | Delete (string socialNetworkName) |
| Deletes an existing instance of SocialNetwork class via SocialNetworkName. More... | |
Properties | |
| long | LoginId [get] |
| int | UserId [get] |
| int | OfficeId [get] |
| string | Catalog [get] |
Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Social Networks.
| void MixERP.Net.Api.Core.SocialNetworkController.Add | ( | MixERP.Net.Entities.Core.SocialNetwork | socialNetwork | ) |
Adds your instance of SocialNetwork class.
| socialNetwork | Your instance of social networks class to add. |
| void MixERP.Net.Api.Core.SocialNetworkController.AddOrEdit | ( | [FromBody] Newtonsoft.Json.Linq.JArray | form | ) |
Adds or edits your instance of SocialNetwork class.
| socialNetwork | Your instance of social networks class to add or edit. |
| List<object> MixERP.Net.Api.Core.SocialNetworkController.BulkImport | ( | [FromBody] dynamic | collection | ) |
Adds or edits multiple instances of SocialNetwork class.
| collection | Your collection of SocialNetwork class to bulk import. |
| MixERPException | Thrown when your any SocialNetwork class in the collection is invalid or malformed. |
| long MixERP.Net.Api.Core.SocialNetworkController.Count | ( | ) |
Counts the number of social networks.
| long MixERP.Net.Api.Core.SocialNetworkController.CountFiltered | ( | string | filterName | ) |
Counts the number of social networks using the supplied filter name.
| filterName | The named filter. |
| long MixERP.Net.Api.Core.SocialNetworkController.CountWhere | ( | [FromBody] dynamic | filters | ) |
Counts the number of social networks using the supplied filter(s).
| filters | The list of filter conditions. |
| void MixERP.Net.Api.Core.SocialNetworkController.Delete | ( | string | socialNetworkName | ) |
Deletes an existing instance of SocialNetwork class via SocialNetworkName.
| socialNetworkName | Enter the value for SocialNetworkName in order to find and delete the existing record. |
| void MixERP.Net.Api.Core.SocialNetworkController.Edit | ( | string | socialNetworkName, |
| [FromBody] MixERP.Net.Entities.Core.SocialNetwork | socialNetwork | ||
| ) |
Edits existing record with your instance of SocialNetwork class.
| socialNetwork | Your instance of SocialNetwork class to edit. |
| socialNetworkName | Enter the value for SocialNetworkName in order to find and edit the existing record. |
| IEnumerable<MixERP.Net.Entities.Core.SocialNetwork> MixERP.Net.Api.Core.SocialNetworkController.Get | ( | ) |
Returns collection of social network for export.
| MixERP.Net.Entities.Core.SocialNetwork MixERP.Net.Api.Core.SocialNetworkController.Get | ( | string | socialNetworkName | ) |
Returns an instance of social network.
| socialNetworkName | Enter SocialNetworkName to search for. |
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.SocialNetworkController.GetCustomFields | ( | ) |
A custom field is a user defined field for social networks.
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.SocialNetworkController.GetCustomFields | ( | string | resourceId | ) |
A custom field is a user defined field for social networks.
| IEnumerable<DisplayField> MixERP.Net.Api.Core.SocialNetworkController.GetDisplayFields | ( | ) |
Displayfield is a lightweight key/value collection of social networks.
| EntityView MixERP.Net.Api.Core.SocialNetworkController.GetEntityView | ( | ) |
Creates meta information of "social network" entity.
| IEnumerable<MixERP.Net.Entities.Core.SocialNetwork> MixERP.Net.Api.Core.SocialNetworkController.GetFiltered | ( | long | pageNumber, |
| string | filterName | ||
| ) |
Creates a filtered and paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName.
| pageNumber | Enter the page number to produce the resultset. |
| filterName | The named filter. |
| IEnumerable<MixERP.Net.Entities.Core.SocialNetwork> MixERP.Net.Api.Core.SocialNetworkController.GetPagedResult | ( | ) |
Creates a paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName.
| IEnumerable<MixERP.Net.Entities.Core.SocialNetwork> MixERP.Net.Api.Core.SocialNetworkController.GetPagedResult | ( | long | pageNumber | ) |
Creates a paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName.
| pageNumber | Enter the page number to produce the resultset. |
| IEnumerable<MixERP.Net.Entities.Core.SocialNetwork> MixERP.Net.Api.Core.SocialNetworkController.GetWhere | ( | long | pageNumber, |
| [FromBody] dynamic | filters | ||
| ) |
Creates a filtered and paginated collection containing 25 social networks on each page, sorted by the property SocialNetworkName.
| pageNumber | Enter the page number to produce the resultset. |
| filters | The list of filter conditions. |