fix von minimalistischen Probleme und instalierung von BCrypt nugetpacket

This commit is contained in:
younes elhaddoury
2026-02-01 13:05:58 +01:00
parent 13621be669
commit 3ba5b10d05
5 changed files with 5 additions and 27 deletions

View File

@@ -8,7 +8,8 @@ namespace SkyTeam
{
class DatenbankServices
{
private string ConnectionString = "Server=mysql.pb.bib.de;uid=pbt3h24akh;pwd=Dd3dwQgPeNxW;database=pbt3h24akh_SkyTeam;";
private string ConnectionString = "server=localhost;uid=root;pwd=root;database=hci";
//private string ConnectionString ="Server=mysql.pb.bib.de;uid=pbt3h24akh;pwd=Dd3dwQgPeNxW;database=pbt3h24akh_SkyTeam;";
protected virtual string connectionString
{

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace SkyTeam
{
class FlugeRepo : databaseServices
class FlugeRepo : DatenbankServices
{
}
}

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace SkyTeam
{
class FlugzeugRepo : databaseServices
class FlugzeugRepo : DatenbankServices
{
}
}

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace SkyTeam
{
class PilotenRepo : databaseServices
class PilotenRepo : DatenbankServices
{
}
}

View File

@@ -1,23 +0,0 @@
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; }
}
}
}