namespace AsiaINFO.SMS.BusinessFactory
|
{
|
using AsiaINFO.SMS.DBFactory;
|
using System;
|
|
public class DBTestBusiness
|
{
|
public static DateTime TestDB()
|
{
|
DateTime time2;
|
try
|
{
|
time2 = DBTestFactory.TestDB();
|
}
|
catch (Exception exception)
|
{
|
throw new Exception(exception.Message);
|
}
|
return time2;
|
}
|
}
|
}
|