Beispiel #1
0
 public static bool SendContentToReceiver(Guid regularContentGuid, Guid privateNumberGuid,
                                          Guid userGuid, Business.SmsSentPeriodType periodType, int period,
                                          DateTime effectiveDateTime)
 {
     Business.Content contentController = new Business.Content();
     return(contentController.SendContentToReceiver(regularContentGuid, privateNumberGuid, userGuid, periodType, period, effectiveDateTime));
 }
Beispiel #2
0
 public static bool InsertContents(Guid regularContentGuid, DataTable dtContents)
 {
     Business.Content contentController = new Business.Content();
     return(contentController.InsertContents(regularContentGuid, dtContents));
 }
Beispiel #3
0
 public static bool Delete(string guids)
 {
     Business.Content contentController = new Business.Content();
     return(contentController.Delete(guids));
 }
Beispiel #4
0
 public static DataTable GetPagedContents(Guid regularContentGuid, string sortField, int pageNo, int pageSize, ref int resultCount)
 {
     Business.Content contentController = new Business.Content();
     return(contentController.GetPagedContents(regularContentGuid, sortField, pageNo, pageSize, ref resultCount));
 }