24 lines
742 B
C#
24 lines
742 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.DAL.Services.Interfaces.Unit;
|
|
|
|
namespace PARR.DAL.Services.Implementations.Unit
|
|
{
|
|
internal class UnitService : BaseRepository<Models.Unit.Unit>, IUnitService
|
|
{
|
|
public UnitService(DataContext dataContext, ILogger<UnitService> logger) : base(logger, dataContext) { }
|
|
|
|
|
|
public IQueryable<Models.Unit.Unit> GetWithIncludes()
|
|
{
|
|
return Get()
|
|
.Include(t => t.UnitValues)
|
|
.ThenInclude(t => t.Field)
|
|
.Include(t => t.UnitValues)
|
|
.ThenInclude(t => t.Value);
|
|
}
|
|
}
|
|
}
|