mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
16 lines
570 B
C#
16 lines
570 B
C#
|
|
using System;
|
|||
|
|
using AutoMapper;
|
|||
|
|
using Bit.Core.Repositories;
|
|||
|
|
using Bit.Infrastructure.EntityFramework.Models;
|
|||
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace Bit.Infrastructure.EntityFramework.Repositories
|
|||
|
|
{
|
|||
|
|
public class InstallationRepository : Repository<Core.Entities.Installation, Installation, Guid>, IInstallationRepository
|
|||
|
|
{
|
|||
|
|
public InstallationRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
|
|||
|
|
: base(serviceScopeFactory, mapper, (DatabaseContext context) => context.Installations)
|
|||
|
|
{ }
|
|||
|
|
}
|
|||
|
|
}
|