Come Trovare un Chiropratico: Guida alla Chiropratica.
Guida Pratica per Trovare un Chiropratico: Cosa sapere sulla Chiropratica.
Scopri come trovare il chiropratico giusto per le tue esigenze nella nostra guida completa. Esploreremo i criteri da considerare, l'importanza della formazione e delle recensioni, e come la chiropratica può migliorare il tuo benessere. Leggi di più per una scelta consapevole e informata!
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://mindorks.com/license/apache-v2
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package sti.com.livefeedback.ui.main.rating;
import sti.com.livefeedback.ui.base.BaseViewModel;
/**
* Created by amitshekhar on 08/07/17.
*/
public class RatingDialogViewModel extends BaseViewModel {
public RatingDialogViewModel(RatingDialogCallback callback) {
super(callback);
}
void onRatingSubmitted(float rating, String message) {
getCallback().onRatingSubmitted(rating, message);
}
}