コード例 #1
0
 public EFGroupRepository(BrauerNetDbContext connection = null)
 {
     if (connection == null)
     {
         this.db = new BrauerNetDbContext();
     }
     else
     {
         this.db = connection;
     }
 }