using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SkyTeam { class databaseServices { private string ConnectionString = "Server=mysql.pb.bib.de;uid=pbt3h24akh;pwd=Dd3dwQgPeNxW;database=pbt3h24akh_SkyTeam;"; protected virtual string connectionString { get { return ConnectionString; } private set { ConnectionString = value; } } } }