示例#1
0
 /// <summary>
 /// Selects Yes or No from the Is this an Insurance Application? list
 /// </summary>
 /// <param name="value">Value for answer. "0" for No, "1" for Yes</param>
 public void SelectInsuranceAppDDL(string value)
 {
     WebControlsExtension.SelectItemByValueFromDDL(insuranceAppDDL, value);
 }
示例#2
0
 /// <summary>
 /// Selects Yes or No from the Is this a Consumer Application? list
 /// </summary>
 /// <param name="value">Value for answer. "0" for No, "1" for Yes</param>
 public void SelectConsumerAppDDL(string value)
 {
     WebControlsExtension.SelectItemByValueFromDDL(consumerAppDDL, value);
 }
示例#3
0
 /// <summary>
 /// Selects Yes or No from the Will a spin up sole-proprietorship be used for funding? list
 /// </summary>
 /// <param name="value">Value for answer. "0" for No, "1" for Yes</param>
 public void SelectSolePropDDL(string value)
 {
     WebControlsExtension.SelectItemByValueFromDDL(solePropDDL, value);
 }
 public void SelectActivityDirection(string value)
 {
     WebControlsExtension.SelectItemByValueFromDDL(activityDirectionInboundOutbound, value);
 }
 public void SelectDisposition(string value)
 {
     WebControlsExtension.SelectItemByValueFromDDL(Disposition, value);
 }
 public void SelectCampaignLookup(string value)
 {
     WebControlsExtension.SelectItemByValueFromDDL(CampaignLookup, value);
 }