Exemplo n.º 1
0
 public void SaveCell(Cell[] Cellarray)
 {
     DAL dal = new DAL();
     dal.SaveCell(Cellarray);
 }
Exemplo n.º 2
0
 public void SaveGame(Game game)
 {
     DAL dal = new DAL();
     dal.SaveGame(game);
 }
Exemplo n.º 3
0
 public DAL()
 {
     this.repository = this;
 }