using System.Collections.Generic; using System.Threading.Tasks; using Bit.App.Models; using System; namespace Bit.App.Abstractions { public interface ICollectionService { Task GetByIdAsync(string id); Task> GetAllAsync(); Task>> GetAllCipherAssociationsAsync(); } }