Exemple #1
0
 public static Posiciones SelectByEquipo(int id)
 {
     PosicionesDSTableAdapters.tbl_posicionesTableAdapter adapter =
         new PosicionesDSTableAdapters.tbl_posicionesTableAdapter();
     PosicionesDS.tbl_posicionesDataTable table = adapter.SelectByEquipo(id);
     if (table.Rows.Count == 0)
     {
         return(null);
     }
     return(RowToDto(table[0]));
 }