コード例 #1
0
ファイル: VaultsService.cs プロジェクト: ethanvachon/Keepr
        internal object GetByProfile(string id)
        {
            IEnumerable <Vault> vaults = _repo.GetByProfile(id);

            return(vaults.ToList().FindAll(v => v.IsPrivate == false));
        }