mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00: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