11 lines
293 B
C#
11 lines
293 B
C#
using DamageAssesment.Api.SurveyResponses.Models;
|
|
|
|
namespace DamageAssesment.Api.SurveyResponses.Interfaces
|
|
{
|
|
public interface ISurveyServiceProvider
|
|
{
|
|
Task<List<Survey>> getSurveysAsync(string token);
|
|
Task<Survey> getSurveyAsync(int surveyId,string token);
|
|
}
|
|
}
|