wzp
2021-07-28 864986e4cad03f6b9bba9a7e65379db496b62a6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
        }
    }
}