From c756887223d5685247d6f49734f73f0823f9486e Mon Sep 17 00:00:00 2001 From: Utkarsh Singh Date: Sat, 8 Apr 2017 14:54:34 +0530 Subject: [PATCH] Parameter assignment changed --- 400-SOURCECODE/AIAHTML5.API/Controllers/ForgotUserController.cs | 4 ++-- 400-SOURCECODE/AIAHTML5.API/Models/UserUtility.cs | 2 +- 400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll | Bin 32768 -> 0 bytes 400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll.config | 2 +- 400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb | Bin 46592 -> 0 bytes 5 files changed, 4 insertions(+), 4 deletions(-) diff --git a/400-SOURCECODE/AIAHTML5.API/Controllers/ForgotUserController.cs b/400-SOURCECODE/AIAHTML5.API/Controllers/ForgotUserController.cs index 2d705a2..23b138f 100644 --- a/400-SOURCECODE/AIAHTML5.API/Controllers/ForgotUserController.cs +++ b/400-SOURCECODE/AIAHTML5.API/Controllers/ForgotUserController.cs @@ -49,13 +49,13 @@ namespace AIAHTML5.API.Controllers { logger.Debug("2. havePassword= " + Convert.ToBoolean(userInfo["havePassword"])); - isMailSent = AIAHTML5.API.Models.UserUtility.SendEmail(userData, true); + isMailSent = AIAHTML5.API.Models.UserUtility.SendEmail(userData, Convert.ToBoolean(userInfo["havePassword"])); } else { logger.Debug("3. havePassword= " + Convert.ToBoolean(userInfo["havePassword"])); - isMailSent = AIAHTML5.API.Models.UserUtility.SendEmail(userData, false); + isMailSent = AIAHTML5.API.Models.UserUtility.SendEmail(userData, Convert.ToBoolean(userInfo["havePassword"])); } logger.Debug("isMailSent= " + isMailSent); if (isMailSent) diff --git a/400-SOURCECODE/AIAHTML5.API/Models/UserUtility.cs b/400-SOURCECODE/AIAHTML5.API/Models/UserUtility.cs index f42e1ab..eacecc5 100644 --- a/400-SOURCECODE/AIAHTML5.API/Models/UserUtility.cs +++ b/400-SOURCECODE/AIAHTML5.API/Models/UserUtility.cs @@ -21,7 +21,7 @@ namespace AIAHTML5.API.Models public static bool SendEmail(dynamic UserDetails, bool havePassword) { ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType)); - logger.Debug("inside SendEmail in for isPassword =" + havePassword); + logger.Debug("inside SendEmail in for havePassword =" + havePassword); try { diff --git a/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll b/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll index 5f45e5f..43e95c0 100644 Binary files a/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll and b/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll differ diff --git a/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll.config b/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll.config index a3f2c58..f7d8a30 100644 --- a/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll.config +++ b/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll.config @@ -37,7 +37,7 @@ - + diff --git a/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb b/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb index 6afcfb5..ff0b095 100644 Binary files a/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb and b/400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb differ -- libgit2 0.21.4