public ModifyMarque(string MarqueName)
        {
            InitializeComponent();
            this.label_Marque_Name.Text = MarqueName;

            this.MarqueController = new MarqueController();
        }
Beispiel #2
0
 public FormMain()
 {
     InitializeComponent();
     this.FamilleNames     = new List <string>();
     this.SousFamilleNames = new List <string>();
     this.MarqueNames      = new List <string>();
     ArticlesController    = new ArticlesController();
     ExportController      = new ExportController();
     ImportController      = new ImportController();
     ModelListController   = new ModelListController();
     SousFamilleController = new SousFamilleController();
     MarqueController      = new MarqueController();
     FamilleController     = new FamilleController();
 }
Beispiel #3
0
        public ModifyArticle(Articles Article)
        {
            InitializeComponent();

            Articles = Article;

            //ModelList = new ModelList();

            ArticleController = new ArticlesController();

            MarqueController = new MarqueController();

            FamilleController = new FamilleController();

            SousFamilleController = new SousFamilleController();

            ModelListController = new ModelListController();

            ModelList = ModelListController.GetAllModelList();
        }
Beispiel #4
0
 public AddMarque()
 {
     InitializeComponent();
     MarqueController = new MarqueController();
 }