コード例 #1
0
 public Response ForgotPassword(ForgotPasswordCustomModel model)
 {
     _response = new Response();
     try
     {
         MemberBusiness memberService = new MemberBusiness();
         _response.responseData = memberService.ForgotPassword(model);
         _response.message      = "Records loaded successfully !!";
         _response.success      = true;
     }
     catch (Exception ex)
     {
         _response.success = false;
         _response.message = ex.Message.ToString();
     }
     finally
     {
         MemberService = null;
     }
     return(_response);
 }