Files
hcs/Hcs.WebApp/Services/HouseService.cs
2025-11-13 10:00:49 +09:00

15 lines
401 B
C#

using Hcs.WebApp.Data.Hcs;
using Microsoft.EntityFrameworkCore;
namespace Hcs.WebApp.Services
{
public class HouseService(IDbContextFactory<HcsDbContext> factory) : HcsServiceBase(factory)
{
public async Task<IEnumerable<House>> GetAllHousesAsync()
{
using var context = GetNewContext();
return await context.Houses.ToListAsync();
}
}
}