public static List <TheLoaiDTO> loadAllAndConvertToFillCombobox() { var result = TheLoaiDAO.loadAll(); result.Insert(0, new TheLoaiDTO(0, "All types")); return(result); }
public static List <TheLoaiDTO> loadAll() { return(TheLoaiDAO.loadAll()); }