コード例 #1
0
 public bool RejectSms(Guid smsSentGuid, SmsSentStates smsSentState, Business.SmsSendFailedType failedType, string errorMessage)
 {
     return(base.ExecuteSPCommand("RejectSms", "@Guid", smsSentGuid,
                                  "@State", (int)smsSentState,
                                  "@FailedType", (int)failedType,
                                  "@ErrorMessage", errorMessage));
 }
コード例 #2
0
 public void UpdateBulkState(Guid guid, SmsSentStates state, SmsSendFailedType faildType)
 {
     ExecuteSPCommand("UpdateBulkStatus", "@Guid", guid,
                      "@State", (int)state,
                      "@SendFaildType", (int)faildType);
 }