mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 17:32:23 +00:00
18 lines
377 B
C#
18 lines
377 B
C#
|
namespace FSO.Server.Database.DA
|
|||
|
{
|
|||
|
public class MySqlDAFactory : IDAFactory
|
|||
|
{
|
|||
|
private DatabaseConfiguration Config;
|
|||
|
|
|||
|
public MySqlDAFactory(DatabaseConfiguration config)
|
|||
|
{
|
|||
|
this.Config = config;
|
|||
|
}
|
|||
|
|
|||
|
public IDA Get()
|
|||
|
{
|
|||
|
return new SqlDA(new MySqlContext(Config.ConnectionString));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|