You can switch the OBJECT_NAME(f.referenced_object_id) = 'tblpatientmaster'
with OBJECT_NAME(f.parent_object_id) = 'tblpatientmaster'
to get reference of this table to refer this table.
--Reference in this table
SELECT
f.name constraint_name
,OBJECT_NAME(f.parent_object_id) referencing_table_name
,COL_NAME(fc.parent_object_id, fc.parent_column_id) referencing_column_name
,OBJECT_NAME (f.referenced_object_id) referenced_table_name
,COL_NAME(fc.referenced_object_id, fc.referenced_column_id) referenced_column_name
, DATA_TYPE column_data_type
FROM sys.foreign_keys AS f
INNER JOIN sys.foreign_key_columns AS fc
ON f.object_id = fc.constraint_object_id
INNER JOIN INFORMATION_SCHEMA.COLUMNS col
ON COL_NAME(fc.parent_object_id, fc.parent_column_id) = col.COLUMN_NAME
where OBJECT_NAME(f.referenced_object_id) = 'YouTableName'
ORDER BY f.name
-- Refer this table to other table
SELECT distinct
f.name constraint_name
,OBJECT_NAME(f.parent_object_id) referencing_table_name
,COL_NAME(fc.parent_object_id, fc.parent_column_id) referencing_column_name
,OBJECT_NAME (f.referenced_object_id) referenced_table_name
,COL_NAME(fc.referenced_object_id, fc.referenced_column_id) referenced_column_name
, DATA_TYPE column_data_type
FROM sys.foreign_keys AS f
INNER JOIN sys.foreign_key_columns AS fc
ON f.object_id = fc.constraint_object_id
INNER JOIN INFORMATION_SCHEMA.COLUMNS col
ON COL_NAME(fc.parent_object_id, fc.parent_column_id) = col.COLUMN_NAME
where OBJECT_NAME(f.parent_object_id) = 'YouTableName'
ORDER BY f.name