Exemplo n.º 1
0
 private void weeklyPredButton_Click(object sender, EventArgs e)
 {
     using (ItemSalesPrediction weeklySalesPredic = new ItemSalesPrediction("WEEK"))
     {
         weeklySalesPredic.ShowDialog();
     }
 }
Exemplo n.º 2
0
 private void monthlyPredButton_Click(object sender, EventArgs e)
 {
     using (ItemSalesPrediction monthlySalesPredic = new ItemSalesPrediction("MONTH"))
     {
         monthlySalesPredic.ShowDialog();
     }
 }