public IActionResult Remove(int id)
        {
            _tenants.KickOut(id);

            return(RedirectToAction("All"));
        }