Exemple #1
0
 public InMemoryBankDAO()
 {
     _ds = new InMemoryDataStore(nameof(InMemoryBankDAO));
     _ds.CreateTable(UserTable);
     _ds.CreateTable(AccountTable);
 }