1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OUP
- {
- public class Helper
- {
- private static Entities _context;
- public static Entities GetContext()
- {
- if (_context == null)
- _context = new Entities();
- return _context;
- }
- }
- }
|