astral-api/Astral.DAL/Repositories/UserLockerRepository.cs

25 lines
785 B
C#
Raw Permalink Normal View History

2024-12-15 17:06:14 +01:00
// <copyright file="UserLockerRepository.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="IUserLockerRepository" />
[RegisterScoped]
public class UserLockerRepository : BaseRepository<UserLocker, Guid>, IUserLockerRepository
{
/// <summary>
/// Initializes a new instance of the <see cref="UserLockerRepository"/> class.
/// </summary>
/// <param name="db">Instance of <see cref="IDbConnectionProvider"/>.</param>
public UserLockerRepository(IDbConnectionProvider db)
: base(db)
{
}
}