Created and populated some of the Game class
This commit is contained in:
parent
59bfc8a050
commit
6bdd4cac59
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Microsoft.Data.SqlClient;
|
||||
|
||||
namespace OOP_Opdracht_CSharp_Alfa_2022.classes
|
||||
{
|
||||
class Game
|
||||
{
|
||||
// Define class members
|
||||
|
||||
private SqlConnection connection;
|
||||
private Dictionary<int, String> table_data;
|
||||
private KeyValuePair<int, String> record;
|
||||
|
||||
// Define methods
|
||||
|
||||
public KeyValuePair<int, String> find()
|
||||
{
|
||||
|
||||
return new KeyValuePair<int, string>();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user