Files
server/src/Core/Repositories/IEventRepository.cs

23 lines
941 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Models.Data;
2017-12-15 15:50:50 -05:00
using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
public interface IEventRepository
{
2017-12-15 15:23:57 -05:00
Task<PagedResult<IEvent>> GetManyByUserAsync(Guid userId, DateTime startDate, DateTime endDate,
PageOptions pageOptions);
Task<PagedResult<IEvent>> GetManyByOrganizationAsync(Guid organizationId, DateTime startDate, DateTime endDate,
PageOptions pageOptions);
2017-12-15 15:50:50 -05:00
Task<PagedResult<IEvent>> GetManyByOrganizationActingUserAsync(Guid organizationId, Guid actingUserId,
DateTime startDate, DateTime endDate, PageOptions pageOptions);
Task<PagedResult<IEvent>> GetManyByCipherAsync(Cipher cipher, DateTime startDate, DateTime endDate,
PageOptions pageOptions);
2017-12-12 14:22:22 -05:00
Task CreateAsync(IEvent e);
Task CreateManyAsync(IList<IEvent> e);
}
}