1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-04 14:13:28 +01:00
bitwarden-server/src/Core/Services/IEventWriteService.cs

13 lines
303 B
C#
Raw Normal View History

2017-12-04 15:58:07 +01:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.WindowsAzure.Storage.Table;
namespace Bit.Core.Services
{
public interface IEventWriteService
{
Task CreateAsync(ITableEntity entity);
Task CreateManyAsync(IList<ITableEntity> entities);
}
}