dodanie argumentu i metod

This commit is contained in:
Naiki00 2021-02-16 11:50:56 +01:00
parent feb1fa0c09
commit fb203f9bb6
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package com.example.notatkon.database;
package com.example.notatkon.dao;
import androidx.lifecycle.LiveData;
import androidx.room.Dao;
@ -7,6 +7,8 @@ import androidx.room.Insert;
import androidx.room.OnConflictStrategy;
import androidx.room.Query;
import com.example.notatkon.entities.NoteEntity;
import java.util.List;
@Dao

View File

@ -1,4 +1,4 @@
package com.example.notatkon.database;
package com.example.notatkon.entities;
import androidx.annotation.NonNull;
import androidx.room.ColumnInfo;