KettlerBikeComm.cs 435 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Fietsclient
  7. {
  8. class KettlerBikeComm
  9. {
  10. private static KettlerBikeComm _instance;
  11. public static KettlerBikeComm Instance
  12. {
  13. get { return _instance ?? (_instance = new KettlerBikeComm()); }
  14. }
  15. private KettlerBikeComm()
  16. {
  17. }
  18. }
  19. }