Click or drag to resize

ControllerDataGridDataItemClass Constructor (String, String)

Initializes a new instance of the ControllerDataGrid class. Constructor with parameter

Namespace:  SOWIWin.Helper
Assembly:  SOWIWin.Helper (in SOWIWin.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
public ControllerDataGrid(
	string pConnectionString,
	string pUserName
)

Parameters

pConnectionString
Type: SystemString
Database connection string
pUserName
Type: SystemString
Database user
Examples
A simple class constructor
/// <summary>
/// Initializes a new instance of the <see cref="SOWIWin.Management.Controllers.ClientController"/> class.
///    Constructor with parameter
/// </summary>
/// <param name="pConnectionString">Databse connection string</param>
/// <param name="pUserName">Database user</param>
public ClientController(string pConnectionString, string pUserName) : base(pConnectionString, pUserName) { }
See Also