Exemple #1
0
        public static List <TheLoaiDTO> loadAllAndConvertToFillCombobox()
        {
            var result = TheLoaiDAO.loadAll();

            result.Insert(0, new TheLoaiDTO(0, "All types"));
            return(result);
        }
Exemple #2
0
 public static List <TheLoaiDTO> loadAll()
 {
     return(TheLoaiDAO.loadAll());
 }