DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Locations/Interfaces/ILocationsProvider.cs

15 lines
760 B
C#
Raw Permalink Normal View History

2023-08-15 22:52:30 -05:00
using DamageAssesment.Api.Locations.Db;
namespace DamageAssesment.Api.Locations.Interfaces
{
public interface ILocationsProvider
{
Task<(bool IsSuccess, IEnumerable<Models.Location> Locations, string ErrorMessage)> GetLocationsAsync();
Task<(bool IsSuccess, Models.Location Location, string ErrorMessage)> GetLocationByIdAsync(int Id);
Task<(bool IsSuccess, Models.Location Location, string ErrorMessage)> PostLocationAsync(Models.Location Location);
Task<(bool IsSuccess, Models.Location Location, string ErrorMessage)> UpdateLocationAsync(int Id, Models.Location Location);
Task<(bool IsSuccess, Models.Location Location, string ErrorMessage)> DeleteLocationAsync(int Id);
void SeedData();
2023-08-15 22:52:30 -05:00
}
}