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