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