Beispiel #1
0
 public EFArmyRepository(WarHammerContext connection = null)
 {
     if (connection == null)
     {
         this.db = new WarHammerContext();
     }
     else
     {
         this.db = connection;
     }
 }