Exemplo n.º 1
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (_context != null)
         {
             _context.Dispose();
             _context = null;
         }
     }
 }
Exemplo n.º 2
0
 public DataLayer()
 {
     _context = new CandidateDataEntities();
 }