Initial population
This commit is contained in:
27
JRCookbookBusiness/JRCookbookBusinessAppManagement.cs
Normal file
27
JRCookbookBusiness/JRCookbookBusinessAppManagement.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user