Files
server/src/Core/Services/IEventWriteService.cs

13 lines
263 B
C#
Raw Normal View History

2017-12-04 09:58:07 -05:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Models.Data;
2017-12-04 09:58:07 -05:00
namespace Bit.Core.Services
{
public interface IEventWriteService
{
2017-12-08 23:09:50 -05:00
Task CreateAsync(IEvent e);
Task CreateManyAsync(IList<IEvent> e);
2017-12-04 09:58:07 -05:00
}
}