mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
23 lines
624 B
C#
23 lines
624 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Bit.App.Abstractions;
|
|||
|
using Bit.App.Models.Data;
|
|||
|
|
|||
|
namespace Bit.App.Repositories
|
|||
|
{
|
|||
|
public class SiteRepository : Repository<SiteData, string>, ISiteRepository
|
|||
|
{
|
|||
|
public SiteRepository(ISqlService sqlService)
|
|||
|
: base(sqlService)
|
|||
|
{ }
|
|||
|
|
|||
|
public Task<IEnumerable<SiteData>> GetAllByUserIdAsync(string userId)
|
|||
|
{
|
|||
|
var sites = Connection.Table<SiteData>().Where(f => f.UserId == userId).Cast<SiteData>();
|
|||
|
return Task.FromResult(sites);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|