12 lines
649 B
C#
12 lines
649 B
C#
|
namespace DamageAssesment.Api.Locations.Interfaces
|
|||
|
{
|
|||
|
public interface IRegionsProvider
|
|||
|
{
|
|||
|
Task<(bool IsSuccess, IEnumerable<Models.Region> regions, string ErrorMessage)> GetRegionsAsync();
|
|||
|
Task<(bool IsSuccess, Models.Region Region, string ErrorMessage)> GetRegionByIdAsync(string Id);
|
|||
|
Task<(bool IsSuccess, Models.Region Region, string ErrorMessage)> PostRegionAsync(Models.Region region);
|
|||
|
Task<(bool IsSuccess, Models.Region Region, string ErrorMessage)> PutRegionAsync(Models.Region region);
|
|||
|
Task<(bool IsSuccess, Models.Region Region, string ErrorMessage)> DeleteRegionAsync(string Id);
|
|||
|
}
|
|||
|
}
|