mirror of
https://github.com/bitwarden/server.git
synced 2025-04-29 08:42:19 -05:00
26 lines
581 B
C#
26 lines
581 B
C#
using Bit.Core.Models.Data;
|
|
using Bit.Core.Repositories;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public class RepositoryEventWriteService : IEventWriteService
|
|
{
|
|
private readonly IEventRepository _eventRepository;
|
|
|
|
public RepositoryEventWriteService(
|
|
IEventRepository eventRepository)
|
|
{
|
|
_eventRepository = eventRepository;
|
|
}
|
|
|
|
public async Task CreateAsync(IEvent e)
|
|
{
|
|
await _eventRepository.CreateAsync(e);
|
|
}
|
|
|
|
public async Task CreateManyAsync(IEnumerable<IEvent> e)
|
|
{
|
|
await _eventRepository.CreateManyAsync(e);
|
|
}
|
|
}
|