mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 19:05:07 -05:00
process messages with IEvent
This commit is contained in:
@ -7,8 +7,8 @@ namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface IEventRepository
|
||||
{
|
||||
Task<ICollection<EventTableEntity>> GetManyByUserAsync(Guid userId, DateTime startDate, DateTime endDate);
|
||||
Task CreateAsync(EventTableEntity entity);
|
||||
Task CreateManyAsync(IList<EventTableEntity> entities);
|
||||
Task<ICollection<IEvent>> GetManyByUserAsync(Guid userId, DateTime startDate, DateTime endDate);
|
||||
Task CreateAsync(IEvent entity);
|
||||
Task CreateManyAsync(IList<IEvent> entities);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user