public void InitCommand(string ConnectionStr)
 {
     ExecCommand = new JournalEntries_Command(ConnectionStr, this);
 }
 public JournalEntries(string ConnectionStr, String L_JournalEntriesID_Value)
 {
     ExecCommand = new JournalEntries_Command(ConnectionStr, this);
     ExecCommand.Load(L_JournalEntriesID_Value);
 }
 public JournalEntries()
 {
     ExecCommand = new JournalEntries_Command(this);
 }