Advertisement
muhamad_lukman

interfaceCandra

Feb 1st, 2022
1,285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.35 KB | None | 0 0
  1. package com.dwicandra.crud_kotlin_learning.DAO
  2.  
  3. import com.dwicandra.crud_kotlin_learning.Model.Employes
  4. import com.google.android.gms.tasks.Task
  5. import com.google.firebase.database.DataSnapshot
  6.  
  7. interface IEmployee {
  8.     fun addEmployess(employee: Employes?): Task<Void?>?
  9.     fun showData(employee : ArrayList<Employes>,snapshot: DataSnapshot)
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement