24 lines
794 B
C#
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)
|
|
{
|
|
}
|
|
}
|