Created LocationDao.
This commit is contained in:
parent
412a4666c3
commit
e38d9b7170
|
|
@ -0,0 +1,10 @@
|
||||||
|
package com.proculite.logmylocation;
|
||||||
|
|
||||||
|
import androidx.room.Dao;
|
||||||
|
import androidx.room.Insert;
|
||||||
|
|
||||||
|
@Dao
|
||||||
|
public interface LocationDao {
|
||||||
|
@Insert
|
||||||
|
void insert(LocationEntity location);
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue