2023-10-04 17:45:51 -05:00
|
|
|
|
using DamageAssesment.Api.Responses.Models;
|
2023-08-15 22:52:30 -05:00
|
|
|
|
|
2023-10-04 17:45:51 -05:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Interfaces
|
2023-08-15 22:52:30 -05:00
|
|
|
|
{
|
|
|
|
|
public interface IQuestionServiceProvider
|
|
|
|
|
{
|
2023-11-01 10:35:20 -05:00
|
|
|
|
Task<List<Question>> getQuestionsAsync();
|
2023-08-15 22:52:30 -05:00
|
|
|
|
Task<List<SurveyQuestions>> getSurveyQuestionsAsync(int surveyId);
|
|
|
|
|
Task<Question> getQuestionsAsync(int questionId);
|
|
|
|
|
}
|
|
|
|
|
}
|