dstMasterTableDataSet.Tables.Add("PersonType")
dstMasterTableDataSet.Tables.Add("Status")
dstMasterTableDataSet.Tables.Add("Relationship")
dstMasterTableDataSet.Tables.Add("ContactType")
dstMasterTableDataSet.Tables("PersonType").BeginLoadData()
sSQLDataAdpt.Fill(dstMasterTableDataSet.Tables("PersonType"))
dstMasterTableDataSet.Tables("PersonType").EndLoadData()
dstMasterTableDataSet.Tables("Status").BeginLoadData()
sSQLDataAdpt.Fill(dstMasterTableDataSet.Tables("Status"))
dstMasterTableDataSet.Tables("Status").EndLoadData()
dstMasterTableDataSet.Tables("Relationship").BeginLoadData()
sSQLDataAdpt.Fill(dstMasterTableDataSet.Tables("Relationship"))
dstMasterTableDataSet.Tables("Relationship").EndLoadData()
dstMasterTableDataSet.Tables("ContactType").BeginLoadData()
sSQLDataAdpt.Fill(dstMasterTableDataSet.Tables("ContactType"))
dstMasterTableDataSet.Tables("ContactType").EndLoadData()