22 lines
698 B
C#
22 lines
698 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Models;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.DAL.Services.Interfaces;
|
|
|
|
namespace PARR.DAL.Services.Implementations
|
|
{
|
|
internal class UserService : BaseRepository<User>, IUserService
|
|
{
|
|
public UserService(DataContext dataContext, ILogger<UserService> logger) : base(logger, dataContext) { }
|
|
|
|
public async Task<User?> GetByIpWithRolesAsync(string ipAddress)
|
|
{
|
|
return await EntitySet
|
|
.Include(t => t.Roles).ThenInclude(t => t.Role)
|
|
.FirstOrDefaultAsync(t => t.Ip == ipAddress);
|
|
}
|
|
}
|
|
}
|