10 lines
223 B
C#
10 lines
223 B
C#
|
using DamageAssesment.Api.SurveyResponses.Models;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.SurveyResponses.Interfaces
|
|||
|
{
|
|||
|
public interface ILocationServiceProvider
|
|||
|
{
|
|||
|
Task<List<Location>> getLocationsAsync();
|
|||
|
}
|
|||
|
}
|