bug rename seance
This commit is contained in:
parent
ccc91bbf19
commit
2def20d16f
384 changed files with 686 additions and 570 deletions
23
src/test/Settings/DbConnectionSettings.cs
Normal file
23
src/test/Settings/DbConnectionSettings.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
namespace test.Settings
|
||||
{
|
||||
public abstract class DbConnectionSettings
|
||||
{
|
||||
public string Database { get; set; }
|
||||
public string Server { get; set; }
|
||||
public int Port { get; set; }
|
||||
public string Username { get; set; }
|
||||
|
||||
public string ConnectionString => $"Database={Database};Server={Server};Port={Port};Username={Username};Password={Password};";
|
||||
|
||||
public string Password { get; set; }
|
||||
}
|
||||
|
||||
public class DevConnectionSettings : DbConnectionSettings
|
||||
{
|
||||
|
||||
}
|
||||
public class TestConnectionSettings : DbConnectionSettings
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue