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

15 lines
384 B
C#
Raw Normal View History

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-12 14:22:22 -05:00
Task CreateAsync(IEvent e);
Task CreateManyAsync(IList<IEvent> e);
}
}