using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Entities; namespace Bit.Core.Repositories { public interface ISendRepository : IRepository { Task> GetManyByUserIdAsync(Guid userId); Task> GetManyByDeletionDateAsync(DateTime deletionDateBefore); } }