using Contracts; namespace Services.Abstractions { public interface IRegionService { Task GetByIdAsync(Guid id); Task> GetAllAsync(); Task CreateAsync(RegionDtoForCreate regionDto); Task UpdateAsync(Guid regionId, RegionDtoForUpdate regionDto); Task DeleteAsync(Guid regionId); } }