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