Skip to content

Apartment repository

csharp
namespace Bookify.Domain.Apartments
{
    public interface IApartmentRepository
    {
        Task<Apartment?> GetApartmentByIdAsync(Guid id, CancellationToken cancellationToken = default);
    }
}

Alireza Abasi - Released under the MIT License.