2017-12-01 09:22:04 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Bit.Core.Models.Data;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Repositories
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IEventRepository
|
|
|
|
|
|
{
|
2017-12-08 23:09:50 -05:00
|
|
|
|
Task<ICollection<IEvent>> GetManyByUserAsync(Guid userId, DateTime startDate, DateTime endDate);
|
2017-12-14 12:33:50 -05:00
|
|
|
|
Task<ICollection<IEvent>> GetManyByOrganizationAsync(Guid organizationId, DateTime startDate, DateTime endDate);
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|