using Microsoft.EntityFrameworkCore; using Portfolio.Shared.Models; using Portfolio.Shared.Services; namespace Portfolio.Api.Services; internal sealed class TechnologyRepository(DatabaseContext context) : ITechnologyRepository { public async Task> GetTechnologies(CancellationToken ct) { return await context.Technologies.ToArrayAsync(ct); } }