diff --git a/Business/MobileV2/MobileV2Business.cs b/Business/MobileV2/MobileV2Business.cs index 4a11248..4ed8d1b 100644 --- a/Business/MobileV2/MobileV2Business.cs +++ b/Business/MobileV2/MobileV2Business.cs @@ -66,43 +66,35 @@ namespace Business.Mobile dashBoardV2.loginResponse = (LoginResponse)customer.Data; dashBoardV2.bannerImages = new List(); + //dashBoardV2.bannerImages.Add(new BannerImages() + //{ + // fileName = "one.jpg", + // filePath = "https://mobile.imelondon.co.uk:2086/images/banners/1.png", + // fileTitle = "file1", + // Redirect = true, + // RedirectURL = "https://imelondon.co.uk/" + //}); dashBoardV2.bannerImages.Add(new BannerImages() { - fileName = "one.jpg", - filePath = "https://mobile.imelondon.co.uk:2086/images/banners/1.png", + fileName = "two.jpg", + filePath = "https://mobile.imelondon.co.uk:2086/images/banners/2.png", fileTitle = "file1", - Redirect = true, - RedirectURL = "https://imelondon.co.uk/" + Redirect = false }); dashBoardV2.bannerImages.Add(new BannerImages() { - fileName = "two.jpg", - filePath = "https://mobile.imelondon.co.uk:2086/images/banners/2.png", + fileName = "four.jpg", + filePath = "https://mobile.imelondon.co.uk:2086/images/banners/4.png", fileTitle = "file1", Redirect = false }); dashBoardV2.bannerImages.Add(new BannerImages() { - fileName = "three.jpg", - filePath = "https://mobile.imelondon.co.uk:2086/images/banners/3.png", + fileName = "five.jpg", + filePath = "https://mobile.imelondon.co.uk:2086/images/banners/5.png", fileTitle = "file1", Redirect = false }); - //dashBoardV2.bannerImages.Add(new BannerImages() - //{ - // fileName = "JME.png", - // filePath = "https://staging.japanremit.com:1083/images/banners/jme.png", - // fileTitle = "JME LOGO", - // Redirect = true, - // RedirectURL = "https://japanremit.com" - //}); - //dashBoardV2.bannerImages.Add(new BannerImages() - //{ - // fileName = "image-4.jpg", - // filePath = "https://staging.japanremit.com:1083/images/banners/image-41.jpg", - // fileTitle = "file4", - // Redirect = false - //}); jsonResult.ErrorCode = "0"; jsonResult.Msg = "Success"; diff --git a/Common/Model/TranHistoryResponse.cs b/Common/Model/TranHistoryResponse.cs index a0930fa..1e96628 100644 --- a/Common/Model/TranHistoryResponse.cs +++ b/Common/Model/TranHistoryResponse.cs @@ -33,5 +33,7 @@ public string ColorCode { get; set; } public string TextCode { get; set; } + + public string ReceiverId { get; set; } } } \ No newline at end of file diff --git a/JsonRx/Config/ResponseMsg.json b/JsonRx/Config/ResponseMsg.json index a98526e..f7444f4 100644 --- a/JsonRx/Config/ResponseMsg.json +++ b/JsonRx/Config/ResponseMsg.json @@ -1906,7 +1906,7 @@ }, { "Key": "INVITE_MESSAGE_BODY", - "Message": "You and your friend will each be given £ @rewardAmount in bonus credit. Get £ @RegReward after they successfully register, and £ @TranReward after their first transaction. There may be minimum send requirements. Terms and Conditions.", + "Message": "You and your friend will each be given @rewardAmount £ in bonus credit. There may be minimum send requirements.", "Lang": "en" }, { diff --git a/Repository/MobileV2/MobileV2Repo.cs b/Repository/MobileV2/MobileV2Repo.cs index 1f4b819..2b0e03a 100644 --- a/Repository/MobileV2/MobileV2Repo.cs +++ b/Repository/MobileV2/MobileV2Repo.cs @@ -158,6 +158,7 @@ namespace Repository.MobileV2 ColorIcon = GetColor(dr["payStatus"].ToString()), ColorCode = GetColorCode(dr["payStatus"].ToString()), TextCode= GetTextCode(dr["payStatus"].ToString()), + ReceiverId = Convert.ToString(dr["Receiverid"]) // PayoutAgent = Convert.ToString(dr["PayoutAgent"]), }; myTransferDto.RecentTransactions.Add(tranHistoryResponse);