mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:06:39 +00:00
14 lines
387 B
C#
14 lines
387 B
C#
using SatelliteProvider.DataAccess.Models;
|
|
|
|
namespace SatelliteProvider.DataAccess.Repositories;
|
|
|
|
public interface IRegionRepository
|
|
{
|
|
Task<RegionEntity?> GetByIdAsync(Guid id);
|
|
Task<IEnumerable<RegionEntity>> GetByStatusAsync(string status);
|
|
Task<Guid> InsertAsync(RegionEntity region);
|
|
Task<int> UpdateAsync(RegionEntity region);
|
|
Task<int> DeleteAsync(Guid id);
|
|
}
|
|
|