コード例 #1
0
ファイル: Form1.cs プロジェクト: yalihan/CSharpCourse
 private void SearchProductsByUnitPrice(decimal min, decimal max)
 {
     //decimal min = Convert.ToDecimal(tbxMinPrice.Text);
     //decimal max = Convert.ToDecimal(tbxMaxPrice.Text);
     dgwProducts.DataSource = _productDal.GetByUnitPrice(min, max);
 }