public void InitCommand(string ConnectionStr)
 {
     ExecCommand = new SAP_Interface_Log_Detail_Command(ConnectionStr, this);
 }
 public SAP_Interface_Log_Detail(string ConnectionStr, Int32 TranID_Value)
 {
     ExecCommand = new SAP_Interface_Log_Detail_Command(ConnectionStr, this);
     ExecCommand.Load(TranID_Value);
 }
 public SAP_Interface_Log_Detail()
 {
     ExecCommand = new SAP_Interface_Log_Detail_Command(this);
 }