Class LoanInfoBaseController
Inheritance
LoanInfoBaseController
Implements
Inherited Members
Namespace: LemonEdge.Client.Core.Views.Controllers
Assembly: LemonEdge.ClientCore.dll
Syntax
public class LoanInfoBaseController : BaseDefaultSingleViewExtenderController<ILoanInfo, IInstrumentBase>, IModelViewController
Constructors
LoanInfoBaseController(IBaseDefaultSingleView<ILoanInfo>)
Declaration
public LoanInfoBaseController(IBaseDefaultSingleView<ILoanInfo> view)
Parameters
Type | Name | Description |
---|---|---|
IBaseDefaultSingleView<ILoanInfo> | view |
Properties
ExtendRelationshipSourceDisplayTypeColumn
The property on the ILoanInfo type that has a IsTypeExtender relationship linking to the IInstrumentBase type
Declaration
protected override string ExtendRelationshipSourceDisplayTypeColumn { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
ControlNames()
A list of all the controls to be dynamically created in the SingleView
This is used by the system to create the actual ControlDisplayInfo classes required from the Controls() property
You can override this to provide a simple definition of each control (combined with AlterControlInfo(ControlDisplayInfo) for more detail), or you can just override Controls() and ignore thisDeclaration
protected override IEnumerable<ControlDisplayInfoLight> ControlNames()
Returns
Type | Description |
---|---|
IEnumerable<ControlDisplayInfoLight> | A list of all the controls to be dynamically created in the SingleView |