13 lines
497 B
C#
Raw Normal View History

using DamageAssesment.Api.Responses.Models;
2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Responses.Interfaces
2023-08-15 23:52:30 -04:00
{
public interface IQuestionServiceProvider
{
Task<List<Question>> getQuestionsAsync(string language,string token);
Task<List<SurveyQuestions>> getSurveyQuestionsAsync(int surveyId, string token);
Task<Question> getQuestionsAsync(int questionId, string token);
Task<List<QuestionCategory>> GetQuestionCategoriesAsync(string? language, string token);
2023-08-15 23:52:30 -04:00
}
}