コード例 #1
0
ファイル: GeneratorRaportow.cs プロジェクト: TheKrystek/Bank
 public static bool Generuj(IRaport raport, Historia historia)
 {
     if (raport == null || historia == null)
         return false;
     foreach (var wpis in historia.Wpisy())
         Generuj(raport, wpis);
     return true;
 }