Пример #1
0
        /// <summary>
        /// Récupère une Poste à partir d'un identifiant de client
        /// </summary>
        /// <param name="Identifiant">Identifant de Poste</param>
        /// <returns>Un Poste </returns>
        public static Poste Get(Int32 identifiant)
        {
            //Connection
            ConnectionStringSettings connectionStringSettings = ConfigurationManager.ConnectionStrings["EntretienSPPPConnectionString"];
            SqlConnection connection = new SqlConnection(connectionStringSettings.ToString());
            //Commande
            String requete = @"SELECT Identifiant, Libelle, Fonction FROM Poste
                                WHERE Identifiant = @Identifiant";
            SqlCommand commande = new SqlCommand(requete, connection);

            //Paramètres
            commande.Parameters.AddWithValue("Identifiant", identifiant);

            //Execution
            connection.Open();
            SqlDataReader dataReader = commande.ExecuteReader();

            dataReader.Read();

            //1 - Création du Poste
            Poste poste = new Poste();

            poste.Identifiant = dataReader.GetInt32(0);
            poste.Libelle = dataReader.GetString(1);
            poste.Fonction = dataReader.GetString(2);
            dataReader.Close();
            connection.Close();
            return poste;
        }
Пример #2
0
        public static void Insert(Poste Poste)
        {
            //Connection
            ConnectionStringSettings connectionStringSettings = ConfigurationManager.ConnectionStrings["EntretienSPPPConnectionString"];
            SqlConnection connection = new SqlConnection(connectionStringSettings.ToString());
            //Commande
            String requete = @"INSERT INTO Poste (Libelle, Fonction)
                                VALUES (@Libelle, @Fonction)";
            SqlCommand commande = new SqlCommand(requete, connection);

            //Paramètres
            commande.Parameters.AddWithValue("Libelle", Poste.Libelle);
            commande.Parameters.AddWithValue("Fonction", Poste.Fonction);
            //Execution
            connection.Open();
            commande.ExecuteNonQuery();
            connection.Close();
        }
Пример #3
0
        /// <summary>
        /// Récupère une liste de Poste à partir de la base de données
        /// </summary>
        /// <returns>Une liste de client</returns>
        public static List<Poste> List()
        {
            //Récupération de la chaine de connexion
            //Connection
            ConnectionStringSettings connectionStringSettings = ConfigurationManager.ConnectionStrings["EntretienSPPPConnectionString"];
            SqlConnection connection = new SqlConnection(connectionStringSettings.ToString());
            //Commande
            String requete = "SELECT Identifiant, Libelle, Fonction FROM Poste";
            connection.Open();
            SqlCommand commande = new SqlCommand(requete, connection);
            //execution

            SqlDataReader dataReader = commande.ExecuteReader();

            List<Poste> list = new List<Poste>();
            while (dataReader.Read())
            {

                //1 - Créer un Poste à partir des donner de la ligne du dataReader
                Poste poste = new Poste();
                poste.Identifiant = dataReader.GetInt32(0);
                poste.Libelle = dataReader.GetString(1);
                poste.Fonction = dataReader.GetString(2);

                //2 - Ajouter ce Poste à la list de client
                list.Add(poste);
            }
            dataReader.Close();
            connection.Close();
            return list;
        }
Пример #4
0
        public static void Update(Poste Poste)
        {
            //Connection
            ConnectionStringSettings connectionStringSettings = ConfigurationManager.ConnectionStrings["EntretienSPPPConnectionString"];
            SqlConnection connection = new SqlConnection(connectionStringSettings.ToString());
            //Commande
            String requete = @"UPDATE Poste
                               SET Libelle = @Libelle, Fonction = @Fonction
                               WHERE Identifiant = @Identifiant";
            SqlCommand commande = new SqlCommand(requete, connection);

            //Paramètres
            commande.Parameters.AddWithValue("Libelle", Poste.Libelle);
            commande.Parameters.AddWithValue("Fonction", Poste.Fonction);
            commande.Parameters.AddWithValue("Identifiant", Poste.Identifiant);
            //Execution
            connection.Open();
            commande.ExecuteNonQuery();
            connection.Close();
        }