Update 20260123

This commit is contained in:
Stefan Hutter
2026-01-23 08:09:23 +01:00
parent 49155d898f
commit 2d1525575b
358 changed files with 123777 additions and 73 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OnDocAPI_NetFramework.Helper
{
public class DBHelper
{
string connectionstring = "";
public DBHelper(string connectionstring)
{
this.connectionstring = connectionstring;
}
}
}