1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| namespace AsiaINFO.SMS.BusinessFactory
| {
| using AsiaINFO.SMS.DBFactory;
| using AsiaINFO.SMS.Entity;
| using System;
|
| public class MOBusiness
| {
| public static void AddMOInfo(MOInfo mo)
| {
| try
| {
| MOFactory.AddMOInfo(mo);
| }
| catch (Exception exception)
| {
| throw new Exception(exception.Message);
| }
| }
| }
| }
|
|