/// <summary>
 /// CreditProduct constructor.
 /// </summary>
 /// <param name="entityRef">References the entity ID and entity type. Both must include the loan ID and borrower application ID associated with the loan.</param>
 /// <param name="options">CreditProduct options.</param>
 /// <param name="name">Name of the service to order.</param>
 public CreditProduct(EntityReference entityRef, CreditOptions options, string name)
     : base(entityRef, options, name)
 {
 }
 /// <summary>
 /// CreditProduct constructor.
 /// </summary>
 /// <param name="entityRef">References the entity ID and entity type. Both must include the loan ID and borrower application ID associated with the loan.</param>
 /// <param name="options">CreditProduct options.</param>
 public CreditProduct(EntityReference entityRef, CreditOptions options)
     : this(entityRef, options, ServiceType.Credit.GetValue() !)
 {
 }