private void ModifConfMAxFeeder_Load(object sender, EventArgs e)
        {
            IGestionProduitDAO IGPDAO = new GestionProduitDAO();

            foreach (var item in IGPDAO.ListerUF())
            {
                comboBox1.Items.Add(item);
            }
        }
        public MajProdBuse()
        {
            InitializeComponent();
            IGestionProduitDAO IGPDAO = new GestionProduitDAO();

            foreach (var item in IGPDAO.ListerUF())
            {
                comboBox1.Items.Add(item);
            }
        }
示例#3
0
        private void Prevision2_Load(object sender, EventArgs e)
        {
            IGestionProduitDAO    IGPDAO   = new GestionProduitDAO();
            ICollection <Produit> Produits = new List <Produit>();



            foreach (var item in IGPDAO.ListerUF())
            {
                UF_Check_Box.Items.Add(item);
            }
        }