DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Responses/Interfaces/IQuestionServiceProvider.cs

12 lines
384 B
C#
Raw Normal View History

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
{
Task<List<Question>> getQuestionsAsync(string token);
Task<List<SurveyQuestions>> getSurveyQuestionsAsync(int surveyId, string token);
Task<Question> getQuestionsAsync(int questionId, string token);
2023-08-15 22:52:30 -05:00
}
}