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

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