public void InitCommand(string ConnectionStr)
 {
     ExecCommand = new HR_Master_Department_Command(ConnectionStr, this);
 }
 public HR_Master_Department(string ConnectionStr, Int32 Id_Value)
 {
     ExecCommand = new HR_Master_Department_Command(ConnectionStr, this);
     ExecCommand.Load(Id_Value);
 }
 public HR_Master_Department()
 {
     ExecCommand = new HR_Master_Department_Command(this);
 }