Example #1
0
        internal List <Vault> GetVaultsByProfileId(string id)
        {
            var vaults = _repo.GetByProfileId(id);

            return(vaults.FindAll(v => !v.IsPrivate));
        }
Example #2
0
        internal IEnumerable <Vault> GetByProfileId(string profileId)
        {
            IEnumerable <Vault> vaults = _repo.GetByProfileId(profileId);

            return(vaults);
        }