コード例 #1
0
        internal IEnumerable <VaultKeepModel> GetKeepByVaultId(int id, string userId)
        {
            Keep foundKeep = GetById(id);

            if (foundKeep.UserId != userId)
            {
                throw new Exception("not your Keep");
            }
            return(_repo.GetKeepByVaultId(id, userId));
        }