コード例 #1
0
ファイル: StadeService.cs プロジェクト: kiady696/ResaSpace
 public static Stade[] getAllStade(SqlConnection c)
 {
     object[] result  = Fonction.select(c, "stade", null, null);
     Stade[]  reponse = new Stade[result.Length];
     for (int i = 0; i < result.Length; i++)
     {
         reponse[i] = (Stade)result[i];
     }
     return(reponse);
 }