Textfile save all tournament but captureRounds information
This commit is contained in:
@ -8,11 +8,19 @@ namespace TrackerLibrary
|
||||
{
|
||||
public static class GlobalConfig
|
||||
{
|
||||
|
||||
public const string PrizesFile = "PrizeModels.csv";
|
||||
public const string PeopleFile = "PersonModels.csv";
|
||||
public const string TeamFile = "TeamModels.csv";
|
||||
public const string TournamentFile = "TournamentModels.csv";
|
||||
public const string MatchupFile = "MatchupModels.csv";
|
||||
public const string MatchupEntryFile = "MatchupEntryModels.csv";
|
||||
|
||||
public static IDataConnection Connection { get; private set; }
|
||||
public static void InitializeConnections(DatabaseType db)
|
||||
{
|
||||
|
||||
switch (db)
|
||||
switch (db)
|
||||
{
|
||||
case DatabaseType.Sql:
|
||||
// TODO - Set up the sql connector properly !
|
||||
@ -28,7 +36,7 @@ namespace TrackerLibrary
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public static string CnnString(string name)
|
||||
|
||||
Reference in New Issue
Block a user