public async Task <IActionResult> DeleteUser(string userId) { if (string.IsNullOrEmpty(userId)) { return(null); } else { return(Ok(await _userDbContext.DeleteUser(userId))); } }