12 lines
396 B
C#
12 lines
396 B
C#
using DamageAssesment.Api.SurveyResponses.Models;
|
|
|
|
namespace DamageAssesment.Api.SurveyResponses.Interfaces
|
|
{
|
|
public interface IQuestionServiceProvider
|
|
{
|
|
Task<List<Question>> getQuestionsAsync(string token);
|
|
Task<List<SurveyQuestions>> getSurveyQuestionsAsync(int surveyId, string token);
|
|
Task<Question> getQuestionsAsync(int questionId, string token);
|
|
}
|
|
}
|