Helper.cs 404 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Eight
  7. {
  8. public class Helper
  9. {
  10. private static EightContext s_context;
  11. public static EightContext GetContext()
  12. {
  13. if (s_context == null)
  14. s_context = new EightContext();
  15. return s_context;
  16. }
  17. }
  18. }