using System.Threading.Tasks; using Bit.Core.Repositories; using System.Collections.Generic; using Bit.Core.Models.Data; namespace Bit.Core.Services { public class RepositoryEventWriteService : IEventWriteService { private readonly IEventRepository _eventRepository; public RepositoryEventWriteService( IEventRepository eventRepository) { _eventRepository = eventRepository; } public async Task CreateAsync(EventTableEntity entity) { await _eventRepository.CreateAsync(entity); } public async Task CreateManyAsync(IList entities) { await _eventRepository.CreateManyAsync(entities); } } }