diff --git a/Business/Mobile/IMobileServices.cs b/Business/Mobile/IMobileServices.cs index 0dec43b..cfc6e8d 100644 --- a/Business/Mobile/IMobileServices.cs +++ b/Business/Mobile/IMobileServices.cs @@ -93,7 +93,7 @@ namespace Business.Mobile JsonRxResponse CheckInfoAgree(string username); - JsonRxResponse GetFieldsByProduct(MappingType type, string customer, string receiverId); + JsonRxResponse GetFieldsByProduct(MappingType type, string customer, string receiverId, string payoutPartner); JsonRxResponse ValidateReferralCode(string referralCode); //JsonRxResponse QueryAddress(string postCode); diff --git a/Business/Mobile/MobileServices.cs b/Business/Mobile/MobileServices.cs index 67e088d..6f51314 100644 --- a/Business/Mobile/MobileServices.cs +++ b/Business/Mobile/MobileServices.cs @@ -2957,7 +2957,7 @@ namespace Business.Mobile } - public JsonRxResponse GetFieldsByProduct(Common.Model.Config.MappingType type, string customerId, string receiverId) + public JsonRxResponse GetFieldsByProduct(Common.Model.Config.MappingType type, string customerId, string receiverId, string payoutPartner) { JsonRxResponse jsonRx = new JsonRxResponse { @@ -2985,7 +2985,7 @@ namespace Business.Mobile else if (type == Common.Model.Config.MappingType.REWARD_POINT) { var response1 = _requestServices.GetRewardFee(customerId); - response1.PaymentOptions = new PaymentOptions() { Options = GetPaymentMethods(receiverId), HeaderText = "How do like to pay?" }; + response1.PaymentOptions = new PaymentOptions() { Options = GetPaymentMethods(receiverId, payoutPartner), HeaderText = "How do you like to pay ?" }; if (response1 != null) { @@ -3045,9 +3045,9 @@ namespace Business.Mobile } - public List