//List Users of this Tennant
        public async Task <IActionResult> TenantUsers(long?id)
        {
            IQueryable <ApplicationUser> Users = null;

            if (id != null)
            {
                Users = userManager.FindByTenantId(id);
            }

            return(View(Users));
        }