电子药箱通讯服务端
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.

ShouShuShiUtility.cs 640B

1234567891011121314151617181920212223242526
  1. using RDH.Data;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Rdh.SocketServer.Client.BLL
  8. {
  9. public class ShouShuShiUtility
  10. {
  11. private static String _connectionString;
  12. public static String ConnectionString
  13. {
  14. get => _connectionString;
  15. set
  16. {
  17. if (_connectionString != value)
  18. {
  19. _connectionString = value;
  20. ConnectionFactory.Current.ConnectionString = _connectionString;
  21. }
  22. }
  23. }
  24. }
  25. }