Esempio n. 1
0
 public IEnumerable <Vault> Get()
 {
     return(_repo.Get());
 }
Esempio n. 2
0
 public IEnumerable <Vault> Get(string profileId)
 {
     return(_repo.Get(profileId).ToList().FindAll(v => v.CreatorId == profileId || !v.IsPrivate));
 }