using System.Threading.Tasks; using Bit.App.Models.Data; using System.Collections.Generic; namespace Bit.App.Abstractions { public interface ICipherCollectionRepository { Task> GetAllByUserIdAsync(string userId); Task InsertAsync(CipherCollectionData obj); Task DeleteAsync(CipherCollectionData obj); Task DeleteByUserIdAsync(string userId); } }