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