abstract class Repository { Future> load(); Future add(T organization); Future update(T organization); Future delete(String? id); }