Interface IFormProvider
Contains methods for forms and their fields retrieval.
public interface IFormProvider
- Extension Methods
Methods
GetFormComponents(BizFormInfo, BizFormComponentContext)
Gets a list of form components as configured in bizFormInfo
.
List<FormComponent> GetFormComponents(BizFormInfo bizFormInfo, BizFormComponentContext bizFormComponentContext = null)
Parameters
bizFormInfo
BizFormInfoBiz form for which to return a list of corresponding form components.
bizFormComponentContext
BizFormComponentContextBiz form component context, which is propagated into created components. If FormInfo is null, it is set to
bizFormInfo
.
Returns
- List<FormComponent>
Returns a list of form components.
Exceptions
- ArgumentNullException
Thrown when
bizFormInfo
is null.
SetFormData(BizFormInfo, List<FormComponent>, Guid?)
Sets data of a form represented by a list of its components.
BizFormItem SetFormData(BizFormInfo bizFormInfo, List<FormComponent> formComponents, Guid? contactGuid)
Parameters
bizFormInfo
BizFormInfoBiz form whose data are to be set.
formComponents
List<FormComponent>Form components containing values to be set.
contactGuid
Guid?Guid of current contact, can be null.
Returns
- BizFormItem
Returns the biz form item set.
Exceptions
- ArgumentNullException
Thrown when
bizFormInfo
orformComponents
is null.
UpdateFormData(BizFormInfo, int, List<FormComponent>, Guid?)
Updates form data of already existing BizFormItem.
BizFormItem UpdateFormData(BizFormInfo bizFormInfo, int bizFormItemId, List<FormComponent> formComponents, Guid? contactGuid)
Parameters
bizFormInfo
BizFormInfoForm to be updated.
bizFormItemId
intIdentifier of form record to be updated.
formComponents
List<FormComponent>Form components containing values to be set.
contactGuid
Guid?Guid of current contact, can be null.
Returns
- BizFormItem
Returns the updated biz form item.
Exceptions
- ArgumentNullException
Thrown when
bizFormInfo
orformComponents
is null.- ArgumentOutOfRangeException
Thrown when
bizFormItemId
does not specify an existing BizFormItem.