dodano argument do delete

This commit is contained in:
Naiki00 2021-02-15 18:56:03 +01:00
parent 3c5d885383
commit c2a0c7b229

View File

@ -19,5 +19,5 @@ public interface NoteDao {
void insert(NoteEntity noteEntity);
@Delete()
void deleteAll();
void delete(NoteEntity noteEntity);
}