using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.App.Models.Data; namespace Bit.App.Abstractions { public interface ILoginRepository : IRepository { Task> GetAllByUserIdAsync(string userId); Task> GetAllByUserIdAsync(string userId, bool favorite); } }