public Product FindById(int id)
        {
            var repo = new ProductRepo(_context);

            return(repo.FindById(id));
        }