using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Domains; namespace Bit.Core.Repositories { public interface ISiteRepository : IRepository { Task GetByIdAsync(string id, string userId); Task> GetManyByUserIdAsync(string userId); } }