public RequestMySQL()
 {
     connectionString = ConnectionString.Read();
     connection       = new MySqlConnection(connectionString);
     employeeStorage  = new EmployeeMySQL();
 }
 public DepartmentMySQL()
 {
     connectionString = ConnectionString.Read();
     connection       = new MySqlConnection(connectionString);
 }
Example #3
0
 public FunctionMySQL()
 {
     connectionString = ConnectionString.Read();
     connection       = new MySqlConnection(connectionString);
 }
Example #4
0
 public EmployeeMySQL()
 {
     connectionString = ConnectionString.Read();
     connection       = new MySqlConnection(connectionString);
 }