public void Insert(Product product)
 {
     _context.Execute("INSERT INTO Products VALUES (@Name, @Price)", product);
 }