1 / 17

Projet .NET Application C#

Projet .NET Application C#. Gestion Commerciale. SOMMAIRE - Répartition des tâches - Présentation du MCD - La Base de Données - Les visuels - Les outils. Nous avons choisi de découper l’application en quatre parties : - Gestion des utilisateurs : Sébastien

faith
Download Presentation

Projet .NET Application C#

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Projet .NETApplication C# Gestion Commerciale

  2. SOMMAIRE - Répartition des tâches - Présentation du MCD - La Base de Données - Les visuels - Les outils

  3. Nous avons choisi de découper l’application en quatre parties : - Gestion des utilisateurs : Sébastien - Gestion des produits : Cédric - Gestion des devis : Vincent - Synthèse des clients : Émile

  4. Modèle Conceptuel de Données

  5. Base de données

  6. Base de données Categorie (code, libelle) -- Structure de la table `categorie` -- CREATE TABLE categorie ( Code int NOT NULL IDENTITY, Libelle varchar(255) DEFAULT NULL, PRIMARY KEY (Code) );

  7. Base de données Client (code, nom, rueFacturation, cpFacturation, villeFacturation, rueLivraison, cpLivraison, villeLivraison, telephone, fax, email) -- Structure de la table `client` -- CREATE TABLE client ( Code int NOT NULL IDENTITY, Nom varchar(255) DEFAULT NULL, RueFacturationvarchar(255) DEFAULT NULL, CPFacturationint DEFAULT NULL, VilleFacturationvarchar(255) DEFAULT NULL, RueLivraisonvarchar(255) DEFAULT NULL, CPLivraisonint DEFAULT NULL, VilleLivraisonvarchar(255) DEFAULT NULL, Telephoneint DEFAULT NULL, Fax int DEFAULT NULL, Email varchar(255) DEFAULT NULL, PRIMARY KEY (Code) );

  8. Base de données Devis (code, date, statut, tauxTVA, tauxRemise, #client_Code) -- Structure de la table `devis` -- CREATE TABLE devis ( Code int NOT NULL IDENTITY, Date varchar(10) DEFAULT NULL, Statut int DEFAULT NULL, TauxTVAfloat DEFAULT NULL, TauxRemisefloat DEFAULT NULL, Client_Codeint NOT NULL, PRIMARY KEY (Code), FOREIGN KEY (Client_Code) REFERENCES client (Code) );

  9. Base de données Produit (code, libelle, prixUnitaire, #categorie_Code) -- Structure de la table `produit` -- CREATE TABLE produit ( Code varchar(10) NOT NULL, Libelle varchar(255) DEFAULT NULL, PrixUnitairefloat DEFAULT NULL, Categorie_Codeint NOT NULL, PRIMARY KEY (Code), FOREIGN KEY (Categorie_Code) REFERENCES categorie (Code) );

  10. Base de données DevisProduit(#produit_Code, #devis_Code, quantite) -- Structure de la table `devisproduit` -- CREATE TABLE devisproduit ( Produit_Codevarchar(10) NOT NULL, Devis_Codeint NOT NULL, Quantiteint DEFAULT NULL, FOREIGN KEY (Produit_Code) REFERENCES produit (Code), FOREIGN KEY (Devis_Code) REFERENCES devis (Code) );

  11. Jeu d’essai Categorie Devis Produit DevisProduit Client

  12. Les Visuels

  13. Produits

  14. Clients

  15. Devis

  16. Synthèse Clients

  17. Les Outils • Framework .NET • IDE Visual Studio • SQL Server • GIT

More Related