Files
the-biergarten-app/web/backend/Infrastructure/Infrastructure.Repository/Breweries/IBreweryRepository.cs
2026-04-27 18:47:39 -04:00

12 lines
347 B
C#

using Domain.Entities;
namespace Infrastructure.Repository.Breweries;
public interface IBreweryRepository
{
Task<BreweryPost?> GetByIdAsync(Guid id);
Task<IEnumerable<BreweryPost>> GetAllAsync(int? limit, int? offset);
Task UpdateAsync(BreweryPost brewery);
Task DeleteAsync(Guid id);
Task CreateAsync(BreweryPost brewery);
}