astral-api/Astral.DAL/Repositories/UserProfileRepository.cs
2024-12-11 20:36:30 +00:00

24 lines
794 B
C#

// <copyright file="UserProfileRepository.cs" company="alveus.dev">
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
using Astral.Core.Entities;
using Astral.Core.Infrastructure;
using Astral.Core.RepositoryInterfaces;
using Injectio.Attributes;
namespace Astral.DAL.Repositories;
/// <inheritdoc cref="IUserProfileRepository" />
[RegisterScoped]
public class UserProfileRepository : BaseRepository<UserProfile, Guid>, IUserProfileRepository
{
/// <summary>
/// Initializes a new instance of the <see cref="UserProfileRepository" /> class.
/// </summary>
/// <param name="db">Instance of <see cref="IDbConnectionProvider" />.</param>
public UserProfileRepository(IDbConnectionProvider db)
: base(db)
{
}
}