AppControllerDataItemClass Constructor | |
Constructor for App use Web or Win Controller
Namespace:
SOWIApp.Foundation
Assembly:
SOWIApp.Foundation (in SOWIApp.Foundation.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public AppController(
Guid pToken,
Dictionary<string, string> pDictionaryUI,
string pTableName = ""
)
Public Sub New (
pToken As Guid,
pDictionaryUI As Dictionary(Of String, String),
Optional pTableName As String = ""
)
Parameters
- pToken
- Type: SystemGuid
Session token set user and client data - pDictionaryUI
- Type: System.Collections.GenericDictionaryString, String
Dictionary UI for translate - pTableName (Optional)
- Type: SystemString
If empty then is TableName equal AppName
Examples
Simple constructor
public Client(Guid pToken, Dictionary<string, string> pDictionaryUI) : base(pToken, pDictionaryUI) { }
See Also