Files
OnDoc/API_NetFramework - Kopie/Helper/DBHelper.cs
T
Stefan Hutter 6d764dccd0 update 20260522
2026-05-22 20:49:40 +02:00

18 lines
339 B
C#

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;
}
}
}