blob: 7e79fe6c0d54defbd3677e05bb6ccc235d6568a6 [file] [log] [blame]
package org.apache.fineract.ui.online.customers.customertasks;
import org.apache.fineract.data.models.customer.Command;
import org.apache.fineract.data.models.customer.Customer;
import org.apache.fineract.ui.base.MvpView;
/**
* @author Rajan Maurya
* On 27/07/17.
*/
public interface CustomerTasksBottomSheetContract {
interface View extends MvpView {
void statusChangedSuccessfully();
void showProgressbar();
void hideProgressbar();
}
interface Presenter {
void changeCustomerStatus(String identifier, Customer customer, Command command);
}
}