using System.Data; using Bit.Core.Entities; using Bit.Core.Enums; using Bit.Core.Repositories; using Bit.Core.Settings; using Dapper; using Microsoft.Data.SqlClient; #nullable enable namespace Bit.Infrastructure.Dapper.Repositories; public class TransactionRepository : Repository, ITransactionRepository { public TransactionRepository(GlobalSettings globalSettings) : this(globalSettings.SqlServer.ConnectionString, globalSettings.SqlServer.ReadOnlyConnectionString) { } public TransactionRepository(string connectionString, string readOnlyConnectionString) : base(connectionString, readOnlyConnectionString) { } public async Task> GetManyByUserIdAsync(Guid userId, int? limit = null) { using (var connection = new SqlConnection(ConnectionString)) { var results = await connection.QueryAsync( $"[{Schema}].[Transaction_ReadByUserId]", new { UserId = userId, Limit = limit ?? int.MaxValue }, commandType: CommandType.StoredProcedure); return results.ToList(); } } public async Task> GetManyByOrganizationIdAsync(Guid organizationId, int? limit = null) { await using var connection = new SqlConnection(ConnectionString); var results = await connection.QueryAsync( $"[{Schema}].[Transaction_ReadByOrganizationId]", new { OrganizationId = organizationId, Limit = limit ?? int.MaxValue }, commandType: CommandType.StoredProcedure); return results.ToList(); } public async Task> GetManyByProviderIdAsync(Guid providerId, int? limit = null) { await using var sqlConnection = new SqlConnection(ConnectionString); var results = await sqlConnection.QueryAsync( $"[{Schema}].[Transaction_ReadByProviderId]", new { ProviderId = providerId, Limit = limit ?? int.MaxValue }, commandType: CommandType.StoredProcedure); return results.ToList(); } public async Task GetByGatewayIdAsync(GatewayType gatewayType, string gatewayId) { // maybe come back to this using (var connection = new SqlConnection(ConnectionString)) { var results = await connection.QueryAsync( $"[{Schema}].[Transaction_ReadByGatewayId]", new { Gateway = gatewayType, GatewayId = gatewayId }, commandType: CommandType.StoredProcedure); return results.SingleOrDefault(); } } }