| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Data;
- using System.Data.SqlClient;
- using CG67.FicheCollege.Domaine;
- using CG67.FicheCollege.Interface;
- namespace CG67.FicheCollege.Entrepot
- {
- public class EntrepotDotation : EntrepotBase, IEntrepotDotation
- {
- public Dotation GetByCodeRNEAndAnnee(string codeRNE, int annee)
- {
- Dotation resultat = new Dotation();
- using (SqlConnection connexion = new SqlConnection(this.ChaineDeConnexion))
- {
- try
- {
- connexion.Open();
- using (SqlCommand command = connexion.CreateCommand())
- {
- command.CommandText = "Select * from Dotation WHERE CodeRNE = @RNE AND Annee = @Annee";
- command.Parameters.AddWithValue("@RNE", codeRNE);
- command.Parameters.AddWithValue("@Annee", annee);
- using (SqlDataReader dr = command.ExecuteReader())
- {
- if (dr.Read())
- {
- switch (dr["Type"].ToString())
- {
- case "Viabilisation":
- resultat.Viabilisation = Convert.ToDouble(dr["Montant"].ToString());
- break;
- case "Entretien":
- resultat.Entretien = Convert.ToDouble(dr["Montant"].ToString());
- break;
- case "Autres Depenses":
- resultat.AutresDepenses = Convert.ToDouble(dr["Montant"].ToString());
- break;
- default:
- Console.WriteLine("{0}", "petite erreur au niveau de la dotation");
- break;
- }
- }
- }
- }
- }
- catch (Exception erreurInterne)
- {
- throw new Exception(" " + erreurInterne);
- }
- finally
- {
- if (connexion.State == ConnectionState.Open)
- connexion.Close();
- }
- }
- return resultat;
- }
- }
- }
|