This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PatientSeenRepository { | |
| private static final String TAG = "PatientSeenRepository"; | |
| private String url; | |
| private String token; | |
| private String requestHeader = "XMLHttpRequest"; | |
| private static CollabmedClient mApiClient; | |
| private MutableLiveData<PatientsSeenData> patientsSeenData = new MutableLiveData<>(); | |
| private MutableLiveData<PatientSeenSummaryData> patientSeenSummaryData = new MutableLiveData<>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PatientsSeenViewModel extends ViewModel { | |
| private static final String TAG = "PatientsSeenViewModel"; | |
| private FiltersRepository filtersRepository; | |
| private PatientSeenRepository patientSeenRepository; | |
| private String mApiUrl; | |
| private String mAuthToken; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PatientSeenSummaryFragment extends Fragment { | |
| private static final String TAG = "PatientSeenSummaryFragm"; | |
| private String apiBaseUrl; | |
| private String authToken; | |
| private ConstraintLayout content; | |
| private ConstraintLayout loading; | |
| private CardView cashPatientsCardView; | |
| private CardView insurancePatientsCardView; | |
| private TextView cashPatientsSummary; |
NewerOlder