17
Projet .NET Application C# Gestion Commerciale

Projet .NET Application C#

  • Upload
    faith

  • View
    43

  • Download
    0

Embed Size (px)

DESCRIPTION

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 - PowerPoint PPT Presentation

Citation preview

Page 1: Projet .NET Application C#

Projet .NET

Application C#Gestion Commerciale

Page 2: Projet .NET Application C#

SOMMAIRE

- Répartition des tâches

- Présentation du MCD

- La Base de Données

- Les visuels

- Les outils

Page 3: Projet .NET Application C#

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

Page 4: Projet .NET Application C#

Modèle Conceptuel de Données

Page 5: Projet .NET Application C#

Base de données

Page 6: Projet .NET Application C#

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)

);

Page 7: Projet .NET Application C#

Base de donnéesClient (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, RueFacturation varchar(255) DEFAULT NULL, CPFacturation int DEFAULT NULL, VilleFacturation varchar(255) DEFAULT NULL, RueLivraison varchar(255) DEFAULT NULL, CPLivraison int DEFAULT NULL, VilleLivraison varchar(255) DEFAULT NULL, Telephone int DEFAULT NULL, Fax int DEFAULT NULL, Email varchar(255) DEFAULT NULL, PRIMARY KEY (Code)

);

Page 8: Projet .NET Application C#

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, TauxTVA float DEFAULT NULL, TauxRemise float DEFAULT NULL, Client_Code int NOT NULL, PRIMARY KEY (Code), FOREIGN KEY (Client_Code) REFERENCES client (Code)

);

Page 9: Projet .NET Application C#

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, PrixUnitaire float DEFAULT NULL, Categorie_Code int NOT NULL, PRIMARY KEY (Code), FOREIGN KEY (Categorie_Code) REFERENCES categorie (Code)

);

Page 10: Projet .NET Application C#

Base de données

DevisProduit (#produit_Code, #devis_Code, quantite)

-- Structure de la table `devisproduit` --

CREATE TABLE devisproduit ( Produit_Code varchar(10) NOT NULL, Devis_Code int NOT NULL, Quantite int DEFAULT NULL, FOREIGN KEY (Produit_Code) REFERENCES produit (Code), FOREIGN KEY (Devis_Code) REFERENCES devis (Code)

);

Page 11: Projet .NET Application C#

Jeu d’essaiCategorie Devis

Produit DevisProduit

Client

Page 12: Projet .NET Application C#

Les Visuels

Page 13: Projet .NET Application C#

Produits

Page 14: Projet .NET Application C#

Clients

Page 15: Projet .NET Application C#

Devis

Page 16: Projet .NET Application C#

Synthèse Clients

Page 17: Projet .NET Application C#

Les Outils

- Framework .NET

- IDE Visual Studio

- SQL Server

- GIT