13 lines
442 B
C#
Raw Normal View History

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