2017-12-01 09:22:04 -05:00
|
|
|
|
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;
|
2017-12-01 09:22:04 -05:00
|
|
|
|
|
|
|
|
|
|
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);
|
2017-12-01 09:22:04 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|