2023-08-15 22:52:30 -05:00
|
|
|
|
using DamageAssesment.Api.SurveyResponses.Models;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.SurveyResponses.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface ISurveyServiceProvider
|
|
|
|
|
{
|
2023-09-20 23:58:29 -05:00
|
|
|
|
Task<List<Survey>> getSurveysAsync(string language);
|
2023-08-15 22:52:30 -05:00
|
|
|
|
Task<Survey> getSurveyAsync(int surveyId);
|
|
|
|
|
}
|
|
|
|
|
}
|