PublicFunction.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Data;
  5. using System.Text.RegularExpressions;
  6. using MySystem.PxcModels;
  7. using Library;
  8. namespace MySystem
  9. {
  10. public class PublicFunction
  11. {
  12. public static decimal NumberFormat(decimal number, int floatCount = 2)
  13. {
  14. string str = number.ToString();
  15. if (str.Contains("."))
  16. {
  17. string[] list = str.Split('.');
  18. if (list[1].Length > floatCount)
  19. {
  20. str = list[0] + "." + list[1].Substring(0, floatCount);
  21. }
  22. }
  23. else
  24. {
  25. str += ".00";
  26. }
  27. return decimal.Parse(str);
  28. }
  29. public static string GetPublicParam(WebCMSEntities db, string Key)
  30. {
  31. CustomTagSet set = db.CustomTagSet.FirstOrDefault(m => m.Tags == Key);
  32. if(set != null)
  33. {
  34. return set.Contents;
  35. }
  36. return "";
  37. }
  38. }
  39. }