public void InitCommand(string ConnectionStr)
 {
     ExecCommand = new InterfaceLogDetail_Command(ConnectionStr, this);
 }
 public InterfaceLogDetail(string ConnectionStr, String InterfaceLogDetailID_Value)
 {
     ExecCommand = new InterfaceLogDetail_Command(ConnectionStr, this);
     ExecCommand.Load(InterfaceLogDetailID_Value);
 }
 public InterfaceLogDetail()
 {
     ExecCommand = new InterfaceLogDetail_Command(this);
 }