コード例 #1
0
ファイル: Log.cs プロジェクト: LavoTP/Arad.SMS.Gateway
 public static DataTable GetPagedLogs(string sortField, int pageNo, int pageSize, ref int resultCount)
 {
     Business.Log logController = new Business.Log();
     return(logController.GetPagedLogs(sortField, pageNo, pageSize, ref resultCount));
 }
コード例 #2
0
ファイル: Log.cs プロジェクト: LavoTP/Arad.SMS.Gateway
 public static bool InsertLog(Common.Log log)
 {
     Business.Log logController = new Business.Log();
     return(logController.InsertLog(log));
 }