public VaultKeep GetByVaultKeepId(int id) { VaultKeep foundVaultKeep = _repo.GetByVaultKeepId(id); if (foundVaultKeep == null) { throw new Exception("Invalid Keep Id"); } return(foundVaultKeep); }