/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package id.amigogroup.posterminal.api; import id.amigogroup.posterminal.model.Tas; import io.reactivex.Observable; import java.util.List; import retrofit2.http.GET; /** * * @author ronal */ public interface ServiceApiCheckin { //Mengambil Semua Tas @GET("tas") Observable> getAllTas(); }