use of org.openforis.collect.model.proxy.SamplingDesignSummariesProxy in project collect by openforis.
the class SamplingDesignService method loadBySurvey.
protected SamplingDesignSummariesProxy loadBySurvey(boolean work, int surveyId, int offset, int maxRecords) {
SamplingDesignSummaries summaries;
CollectSurvey survey;
if (work) {
survey = surveyManager.loadSurvey(surveyId);
} else {
survey = surveyManager.getById(surveyId);
}
summaries = samplingDesignManager.loadBySurvey(surveyId, offset, maxRecords);
return new SamplingDesignSummariesProxy(survey, summaries);
}
Aggregations