public IActionResult GetById(int id) { var Seller = service.FindById(id); if (Seller == null) { return(NotFound()); } return(Ok(Seller)); }