You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
457 B

  1. using OT.COM.SignalerMessage;
  2. using SoldierData.EnterprizeV4;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace CounsellorBL.ORD
  7. {
  8. public class MessageLogRecordService : SingleDataTableTemplate<tb_ord_message_log_record>
  9. {
  10. [CounsellorBL.Common.Auth(false)]
  11. public override CResponseMessage Update(CRequestMessage i_crmInput)
  12. {
  13. return base.Update(i_crmInput);
  14. }
  15. }
  16. }