public List <Auteur> GetStripAuteurs(int id)
        {
            var command = new SqlCommand("select * from Auteur join Strip_has_Auteur on auteur.id = Strip_has_Auteur.Auteur_id Where Strip_id = @id");

            command.Parameters.Add(new SqlParameter("id", id));
            return(ConvertToBusinesslaag.ConvertToAuteurs((List <AuteurDB>)GetRecords(command)));
        }
 public IEnumerable <Auteur> GetAll()
 {
     // DBAs across the country are having strokes
     //  over this next command!
     using (var command = new SqlCommand("SELECT * FROM Auteur"))
     {
         return(ConvertToBusinesslaag.ConvertToAuteurs((List <AuteurDB>)GetRecords(command)));
     }
 }