Beispiel #1
0
 public Consumer()
 {
     _restCall = new RestCall();
 }
Beispiel #2
0
 public GetSurveysViewModel(AuthModel auth)
 {
     _rest    = DependencyService.Get <IRestCall>();
     _surveys = new NotifyTaskCompletion <List <SurveyDetailsModel> >(GetSurveysAsync(auth));
 }
Beispiel #3
0
 public Consumer(IRestCall restCall)
 {
     _restCall = restCall;
 }