public IActionResult Bans() { var bans = _banService.GetAll(); var model = new AdminBansViewModel { Bans = bans }; return(View(model)); }