public IActionResult DisableSeller(int id)
        {
            _sellerRepository.DisableSeller(id);

            return(RedirectToAction("Index", _sellerRepository.GetAllSellers()));
        }