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.

26 lines
569 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HKCardManager
  7. {
  8. public class BaseHelper : IBaseHelper
  9. {
  10. private volatile static BaseHelper _Instance;
  11. public static BaseHelper GetInstance => _Instance ?? (_Instance = new BaseHelper());
  12. private BaseHelper() { }
  13. /// <summary>
  14. /// 添加机构
  15. /// </summary>
  16. /// <returns></returns>
  17. public bool AddInstitutions()
  18. {
  19. return true;
  20. }
  21. }
  22. }