2023-09-26 15:22:26 -05:00
|
|
|
|
using DamageAssesment.Api.Responses.Models;
|
2023-08-15 22:52:30 -05:00
|
|
|
|
|
2023-09-26 15:22:26 -05:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Interfaces
|
2023-08-15 22:52:30 -05:00
|
|
|
|
{
|
|
|
|
|
public interface IQuestionServiceProvider
|
|
|
|
|
{
|
2023-11-05 13:39:56 -05:00
|
|
|
|
Task<List<Question>> getQuestionsAsync(string language,string token);
|
2023-09-19 23:32:30 -05:00
|
|
|
|
Task<List<SurveyQuestions>> getSurveyQuestionsAsync(int surveyId, string token);
|
|
|
|
|
Task<Question> getQuestionsAsync(int questionId, string token);
|
2023-11-05 13:39:56 -05:00
|
|
|
|
Task<List<QuestionCategory>> GetQuestionCategoriesAsync(string? language, string token);
|
2023-08-15 22:52:30 -05:00
|
|
|
|
}
|
|
|
|
|
}
|