FormHistory.cs 724 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace СУБД_Альфапол
  11. {
  12. public partial class FormHistory : Form
  13. {
  14. public FormHistory()
  15. {
  16. InitializeComponent();
  17. }
  18. private void FormHistory_Load(object sender, EventArgs e)
  19. {
  20. // TODO: This line of code loads data into the 'dbAlphapolAGDataSet.HistorySale' table. You can move, or remove it, as needed.
  21. this.historySaleTableAdapter.Fill(this.dbAlphapolAGDataSet.HistorySale);
  22. }
  23. }
  24. }