コード例 #1
0
        public async Task <bool> SendPasswordResetConfirmationEmail(string userName, DateTime PasswordResetDateTime)
        {
            var auditLogBO = new AuditLogBO();
            var response   = await _resetPasswordService.SendPasswordResetConfirmationEmail(userName, PasswordResetDateTime, auditLogBO);

            return(response);
        }