コード例 #1
0
ファイル: Program.cs プロジェクト: SDP-SPIII-2020/sample-code
 public bool HasGoodCredit(Student c)
 {
     Console.WriteLine("Verify credit for " + c.Name);
     return(true);
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: SDP-SPIII-2020/sample-code
 public bool HasNoBadLoans(Student c)
 {
     Console.WriteLine("Verify loans for " + c.Name);
     return(true);
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: SDP-SPIII-2020/sample-code
 public bool HasSufficientSavings(Student c, int amount)
 {
     Console.WriteLine("Verify bank for " + c.Name);
     return(true);
 }