blob: 5cff8db1c02a26a290b50f7329da2a39b4cd2f67 [file] [log] [blame]
package org.apache.fineract.ui.online.identification.identificationlist;
import org.apache.fineract.data.models.customer.identification.Identification;
import org.apache.fineract.ui.base.MvpView;
import java.util.List;
/**
* @author Rajan Maurya
* On 31/07/17.
*/
public interface IdentificationsContract {
interface View extends MvpView {
void showUserInterface();
void showIdentification(List<Identification> identifications);
void showProgressbar();
void hideProgressbar();
void showRecyclerView(boolean status);
void showMessage(String message);
}
interface Presenter {
void fetchIdentifications(String customerIdentifier);
}
}