Esempio n. 1
0
 public static List <Serveur> ReturnServeur()
 {
     try
     {
         return(LiaisonDAO.ReturnServeur());
     }
     catch (Exception ex)
     {
         throw new Exception("Echec de Création de fichier", ex);
     }
 }
Esempio n. 2
0
 public static bool DeleteServeur(Serveur config)
 {
     try
     {
         return(LiaisonDAO.DeleteServeur(config));
     }
     catch (Exception ex)
     {
         throw new Exception("Echec de suppression de fichier", ex);
     }
 }
Esempio n. 3
0
 public static bool CreateServeur(Serveur config)
 {
     try
     {
         return(LiaisonDAO.CreateServeur(config));
     }
     catch (Exception ex)
     {
         throw new Exception("Echec de Création de fichier", ex);
     }
 }