aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsService.cs
blob: b8912cb9f155dbced8a46ed4d295417bda7496c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Diagnostics;
using CrupestApi.Commons;
using CrupestApi.Commons.Crud;
using Dapper;

namespace CrupestApi.Secrets;

public class SecretsService : CrudService<SecretInfo>
{
    private readonly ILogger<SecretsService> _logger;

    public SecretsService(ITableInfoFactory tableInfoFactory, IDbConnectionFactory dbConnectionFactory, ILoggerFactory loggerFactory)
    : base("secrets", tableInfoFactory, dbConnectionFactory, loggerFactory)
    {
        _logger = loggerFactory.CreateLogger<SecretsService>();
    }
}