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