public void Load(DataRow dr)
 {
     foreach (PropertyInfo ProInfo in _AP_Master_Supplier_Contact.GetType().GetProperties())
     {
         _AP_Master_Supplier_Contact.GetType().GetField("Edit" + ProInfo.Name).SetValue(_AP_Master_Supplier_Contact, false);
         if (dr.Table.Columns.Contains(ProInfo.Name))
         {
             if (!dr.IsNull(ProInfo.Name))
             {
                 ProInfo.SetValue(_AP_Master_Supplier_Contact, dr[ProInfo.Name], null);
                 //_AP_Master_Supplier_Contact.GetType().GetField("Edit" + ProInfo.Name).SetValue(_AP_Master_Supplier_Contact, true);
             }
         }
     }
 }