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

13 lines
308 B
C#
Raw Normal View History

2017-05-08 14:08:44 -04:00
using System;
using Bit.Core.Models.Table;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Bit.Core.Repositories
{
public interface IGroupRepository : IRepository<Group, Guid>
{
Task<ICollection<Group>> GetManyByOrganizationIdAsync(Guid organizationId);
}
}