Interface ICaseObject
Assembly: PayrollEngine.Client.Scripting.dll
Syntax
public interface ICaseObject
Methods
View Source
GetCaseFieldName(string)
Declaration
string GetCaseFieldName(string propertyName)
Parameters
| Type |
Name |
Description |
| string |
propertyName |
|
Returns
View Source
GetObject<T>(string)
Get case object by property name
Declaration
T GetObject<T>(string propertyName) where T : class, ICaseObject
Parameters
| Type |
Name |
Description |
| string |
propertyName |
|
Returns
Type Parameters
View Source
GetObjects<T>()
Declaration
List<T> GetObjects<T>() where T : class, ICaseObject
Returns
Type Parameters
View Source
GetValue(string)
Get case object value by case field name
Declaration
object GetValue(string caseFieldName)
Parameters
| Type |
Name |
Description |
| string |
caseFieldName |
|
Returns
View Source
SetValue(string, object)
Set case object value by case field name
Declaration
void SetValue(string caseFieldName, object value)
Parameters
Extension Methods