// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // using Astral.Core.Entities; using Astral.Core.Infrastructure; using Astral.Core.RepositoryInterfaces; using Injectio.Attributes; namespace Astral.DAL.Repositories; /// [RegisterScoped] public class UserProfileRepository : BaseRepository, IUserProfileRepository { /// /// Initializes a new instance of the class. /// /// Instance of . public UserProfileRepository(IDbConnectionProvider db) : base(db) { } }