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

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>();
    }
}