Exemple #1
0
        async Task JobFilterChanged()
        {
            var jobParams = new JobSearchParams()
            {
                SearchString = searchString,
                Locations    = selectedLocations == null ? "" : string.Join(",", selectedLocations),
                Types        = selectedTypes == null ? "" : string.Join(",", selectedTypes),
            };

            isJobsLoading = true;
            jobs          = await Client.GetJobs(jobParams);

            isJobsLoading = false;
        }
Exemple #2
0
 public async Task <List <Job> > SearchJobsAsync(JobSearchParams jobSearchParams)
 {
     throw new NotImplementedException();
 }