File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
app/src/main/java/ai/elimu/content_provider/room Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ import androidx.room.Query
7
7
import androidx.room.Update
8
8
9
9
@Dao
10
- interface Image_WordDao {
10
+ interface ImageWordDao {
11
11
@Insert
12
- fun insert (image_Word : Image_Word )
12
+ fun insert (imageWord : Image_Word )
13
13
14
14
@Update
15
- fun update (image_Word : Image_Word )
15
+ fun update (imageWord : Image_Word )
16
16
17
17
@Query(" DELETE FROM Image_Word WHERE Image_id = :imageId" )
18
18
fun delete (imageId : Long )
Original file line number Diff line number Diff line change 17
17
import ai .elimu .content_provider .room .dao .EmojiDao ;
18
18
import ai .elimu .content_provider .room .dao .EmojiWordDao ;
19
19
import ai .elimu .content_provider .room .dao .ImageDao ;
20
- import ai .elimu .content_provider .room .dao .Image_WordDao ;
20
+ import ai .elimu .content_provider .room .dao .ImageWordDao ;
21
21
import ai .elimu .content_provider .room .dao .LetterDao ;
22
22
import ai .elimu .content_provider .room .dao .NumberDao ;
23
23
import ai .elimu .content_provider .room .dao .StoryBookChapterDao ;
@@ -67,7 +67,7 @@ public abstract class RoomDb extends RoomDatabase {
67
67
68
68
public abstract ImageDao imageDao ();
69
69
70
- public abstract Image_WordDao image_WordDao ();
70
+ public abstract ImageWordDao image_WordDao ();
71
71
72
72
public abstract StoryBookDao storyBookDao ();
73
73
You can’t perform that action at this time.
0 commit comments