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.

20 lines
683 B

  1. namespace CustomerOnlineV2.Common.Models
  2. {
  3. public class ResponseHelper
  4. {
  5. public const int SUCCESS = 0;
  6. public const int FAILED = 1;
  7. public const int NORECORD = 2;
  8. public const int EXCEPTION = 999;
  9. public const int SUSPICIOUS = 2;
  10. }
  11. public class ResponseMessageHelper
  12. {
  13. public const string SUCCESS = "Success!";
  14. public const string FAILED = "Failed!";
  15. public const string NORECORD = "No Records(s)";
  16. public const string EXCEPTION = "Exception occured in the system, please contact HO!";
  17. public const string SUSPICIOUS = "Transaction is in suspicious, please contact HO!";
  18. }
  19. }