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

14 lines
377 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
2017-03-08 21:45:08 -05:00
using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
public interface IOrganizationRepository : IRepository<Organization, Guid>
{
Task<ICollection<Organization>> GetManyByUserIdAsync(Guid userId);
2017-07-10 16:21:18 -04:00
Task UpdateStorageAsync(Guid id, long storageIncrease);
}
}