28 lines
712 B
C#
28 lines
712 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JRCookbookBusiness
|
|
{
|
|
public static class JRCookbookBusinessAppManagement
|
|
{
|
|
public static void ShutDownApp()
|
|
{
|
|
clsDatabaseLayer.CloseSharedDatabaseConnection();
|
|
}
|
|
|
|
public static Int32 JRJRUpdateAdhoc(String strSQL)
|
|
{
|
|
return clsDatabaseLayer.GetDatabaseLayer().JRJRUpdateAdhoc(strSQL);
|
|
}
|
|
|
|
public static DataSet JRJRSelectAdhoc(String strSQL)
|
|
{
|
|
return clsDatabaseLayer.GetDatabaseLayer().JRJRSelectAdhoc(strSQL);
|
|
}
|
|
}
|
|
}
|