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