Update nach User-Passwort-Change

This commit is contained in:
2021-07-15 10:30:16 +02:00
parent 93e3957702
commit 1ff218a129
93 changed files with 7399 additions and 1071 deletions

View File

@@ -38,8 +38,8 @@ namespace BlazorApp.Controller
public static List<Beruf> GetLast(Beruf Berufdata)
{
Helper.HttpClientHelper httpcli = new Helper.HttpClientHelper();
string sql = "Select top 1 * from beruf where mutierer='" + Berufdata.mutierer + "' order by erstellt_am desc";
httpcli.CallService("Beruf", "usersql/"+sql, "GET", Berufdata);
string sql = "Select top 1 * from Beruf where mutierer='" + Berufdata.mutierer + "' order by erstellt_am desc";
httpcli.CallService("Beruf", "usersql/" + sql, "GET", Berufdata);
return JsonConvert.DeserializeObject<List<Beruf>>(httpcli.Results.daten);
}